name = 'Test Category'; $id = WikiAppMapper::create()->execute($app); self::assertGreaterThan(0, $app->id); self::assertEquals($id, $app->id); $appR = WikiAppMapper::get()->where('id', $app->id)->execute(); self::assertEquals($app->name, $appR->name); } }