private Context
$context;
private EntityRepository
$actionButtonRepository;
protected function setUp(): void
{ $this->appRepository =
$this->
getContainer()->
get('app.repository'
);
$this->actionButtonRepository =
$this->
getContainer()->
get('app_action_button.repository'
);
$this->appService =
new AppService( new AppLifecycleIterator( $this->appRepository,
$this->
getAppLoader(__DIR__ . '/Manifest/_fixtures/test'
) ),
$this->
getContainer()->
get(AppLifecycle::
class) );
$this->context = Context::
createDefaultContext();
} public function testRefreshInstallsNewApp(): void
{