ソースを参照

controller tests

euromark 11 年 前
コミット
f0e0fabc91
1 ファイル変更18 行追加0 行削除
  1. 18 0
      Test/Case/AllControllerTestsTest.php

+ 18 - 0
Test/Case/AllControllerTestsTest.php

@@ -0,0 +1,18 @@
+<?php
+/**
+ * Group test - Tools
+ */
+class AllControllerTestsTest extends PHPUnit_Framework_TestSuite {
+
+	/**
+	 * Suite method, defines tests for this suite.
+	 *
+	 * @return void
+	 */
+	public static function suite() {
+		$Suite = new CakeTestSuite('All Controller tests');
+		$path = dirname(__FILE__);
+		$Suite->addTestDirectory($path . DS . 'Controller');
+		return $Suite;
+	}
+}