4

我的老板让我学习如何使用 Kohana 并在其中进行简单的测试。我们想用它作为我们未来项目的框架。

作为KohanaPHPSimpleTest的新手,我什至无法弄清楚如何对我的助手进行最简单的测试。我什至找不到关于如何将 SimpleTest 附加到 Kohana 的分步教程。

这里有人有想法吗?

4

1 回答 1

4

我们在 Kohana 中创建了一个 SimpleTest_controller

它从目录测试中获取测试

define ( 'SIMPLE_TEST', '../tools/simpletest/');
require_once(SIMPLE_TEST . 'unit_tester.php');
require_once(SIMPLE_TEST . 'reporter.php');
require_once( SIMPLE_TEST . 'mock_objects.php');

class SimpleTest_Controller extends Controller {
  function index() {
    $this->runall();
  }

  function runall() {
    $sDir = '../tests/';
    $rDir = opendir( $sDir );

    while ( $sFile = readdir( $rDir ) ) {
      if ( $sFile != '.' && $sFile != '..' ) {
        $this->run( $sFile );
      }
    }
  }

  function run ( $sTests ) {
    $sDir = '../tests/' . $sTests .'/';
    $rDir = opendir( $sDir );
    $test = new GroupTest( $sTests );

    while ( $sFile = readdir( $rDir ) ) {
      if ( $sFile != '.' && $sFile != '..' && !preg_match('/~\d+~/', $sFile) ) {
        include_once($sDir . $sFile);
        $test->addTestCase( substr($sFile, 0, -4 ) );
      }
    }

    $test->run( new HtmlReporter() );
  }
}

如果您的测试文件夹中有帐户文件夹,您可以调用domain.com/simpletest以运行全部或调用domain.com/simpletest/run/account

于 2009-11-03T10:51:07.823 回答