コード例 #1
0
ファイル: TBaseTest.php プロジェクト: kurari/Tenpra
 function testCallUndefinedMethod()
 {
     $obj = new TBase();
     try {
         $obj->noMethod();
     } catch (Exception $e) {
         $this->assertEquals("TException", get_class($e));
     }
 }