Inheritance: extends AppModel
 public function test_accessors()
 {
     $RESULT = 'result data';
     $DATA = ['result' => $RESULT];
     $obj = new Cover($DATA);
     $this->assertEquals($RESULT, $obj->getResultData());
 }
Esempio n. 2
0
 function test_key()
 {
     $this->assertEquals('id', Cover::key());
 }