예제 #1
0
파일: TBaseTest.php 프로젝트: kurari/Tenpra
 function testCallUndefinedMethod()
 {
     $obj = new TBase();
     try {
         $obj->noMethod();
     } catch (Exception $e) {
         $this->assertEquals("TException", get_class($e));
     }
 }