Cilex\Tests\ApplicationTest::testConstruct PHP Method

testConstruct() public method

Tests whether the constructor instantiates the correct dependencies and correctly sets the name on the Console's Application.
public testConstruct ( )
    public function testConstruct()
    {
        $this->assertInstanceOf('Symfony\\Component\\Console\\Application', $this->app['console']);
        $this->assertEquals(self::NAME, $this->app['console']->getName());
        $this->assertEquals(self::VERSION, $this->app['console']->getVersion());
    }