public function test_accessors() { $RESULT = 'result data'; $DATA = ['result' => $RESULT]; $obj = new Cover($DATA); $this->assertEquals($RESULT, $obj->getResultData()); }
function test_key() { $this->assertEquals('id', Cover::key()); }