lithium\tests\cases\console\command\CreateTest::testConstruct PHP Method

testConstruct() public method

public testConstruct ( )
    public function testConstruct()
    {
        $create = new MockCreate(array('request' => $this->request));
        $expected = 'create_test';
        $result = $create->library;
        $this->assertEqual($expected, $result);
    }