lithium\tests\cases\console\command\CreateTest::testSave PHP Метод

testSave() публичный Метод

public testSave ( )
    public function testSave()
    {
        chdir($this->_testPath);
        $this->request->params = array('library' => 'create_test', 'template' => 'test');
        $create = new MockCreate(array('request' => $this->request));
        $result = $create->save(array('namespace' => 'create_test\\tests\\cases\\models', 'use' => 'create_test\\models\\Posts', 'class' => 'PostTest', 'methods' => "\tpublic function testCreate() {\n\n\t}\n"));
        $this->assertNotEmpty($result);
        $result = $this->_testPath . '/create_test/tests/cases/models/PostTest.php';
        $this->assertFileExists($result);
        $this->_cleanUp();
    }