Пример #1
0
 public function testSetByChecksumFail()
 {
     try {
         $this->contact->setPropertyByChecksum('87654321', 'EMAIL', '*****@*****.**');
     } catch (\Exception $e) {
         $this->assertEquals('Property not found', $e->getMessage());
         $this->assertEquals(404, $e->getCode());
         return;
     }
     $this->fail('Expected Exception 404.');
 }