1
我該如何去整合Simpletest和Kohana 3?我已經檢查了這個answer,但我喜歡使用SimpleTest的autorun.php功能。Kohana 3和SimpleTest使用autorun.php
我該如何去整合Simpletest和Kohana 3?我已經檢查了這個answer,但我喜歡使用SimpleTest的autorun.php功能。Kohana 3和SimpleTest使用autorun.php
兮兮的代碼中的一些小時之後,我發現怎麼辦呢
我的例子:
<?php
include_once ("../../test_index.php");
include_once ("../simpletest/autorun.php");
class kohana_init_test extends UnitTestCase
{
function testTrue()
{
$this->assertTrue(true);
}
function testWelcome()
{
$response = Request::factory('main/index')->execute()->response;
$this->assertEqual($response->content, 'testing');
}
}
?>
一些注意事項:在$響應變量取決於如果您使用的是查看或純文本輸出。如果您使用的是模板控制器或視圖,那麼$ response就是您用來呈現內容的視圖。視圖中的變量是可用的,如上所示(變量內容在視圖內部定義)。