Пример #1
0
 public function testbean_implements()
 {
     $aor_Report = new AOR_Report();
     $this->assertEquals(false, $aor_Report->bean_implements(''));
     //test with blank value
     $this->assertEquals(false, $aor_Report->bean_implements('test'));
     //test with invalid value
     $this->assertEquals(true, $aor_Report->bean_implements('ACL'));
     //test with valid value
 }