コード例 #1
0
ファイル: AuditTest.php プロジェクト: sacredwebsite/SuiteCRM
 public function testget_list_view_data()
 {
     $audit = new Audit();
     //execute the method and test if it works and does not throws an exception.
     try {
         $audit->get_list_view_data();
         $this->assertTrue(true);
     } catch (Exception $e) {
         $this->fail();
     }
     $this->markTestIncomplete('method has no implementation');
 }