芝麻web文件管理V1.00
编辑当前文件:/home/p/r/i/prismawe/www/resuamer/site/system/tests/kohana/ModelTest.php
* @copyright (c) 2008-2011 Kohana Team * @license http://kohanaframework.org/license */ class Kohana_ModelTest extends Unittest_TestCase { /** * Test the model's factory. * * @test * @covers Model::factory */ public function test_create() { $foobar = Model::factory('Foobar'); $this->assertEquals(TRUE, $foobar instanceof Model); } } class Model_Foobar extends Model { }