ソースを参照

AllTools test

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

+ 18 - 0
Test/Case/AllToolsTest.php

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