simpletest:http://www.simpletest.org/ downloadからソースを落とします 主な形? <?php include('./inc/simpletest/autorun.php'); require_once(テストしたいクラス); class 適当なクラス名 extends UnitTestCase { public function 適当なメソッド名() { // テストしたい内容 } } // end of class −使い方− ・simpletestを解凍してtestコードを記述するファイルでincludeする →include('./inc/simpletest/autorun.php'); ・UnitTestCaseを継承して、TestOfShopControllerの中でテストコードを記述する class TestOfShopContro