CRUDlexTests\ServiceProviderTest::testRegister PHP Method

testRegister() public method

public testRegister ( )
    public function testRegister()
    {
        $app = new Application();
        $app->register(new ServiceProvider(), ['crud.file' => $this->crudFile, 'crud.datafactory' => $this->dataFactory]);
        $this->assertTrue($app->offsetExists('crud'));
        $app['crud']->getEntities();
    }