コード例 #1
0
ファイル: CallTest.php プロジェクト: recci/SuiteCRM
 public function testbean_implements()
 {
     $call = new Call();
     $this->assertEquals(false, $call->bean_implements(''));
     //test with blank value
     $this->assertEquals(false, $call->bean_implements('test'));
     //test with invalid value
     $this->assertEquals(true, $call->bean_implements('ACL'));
     //test with valid value
 }