Beispiel #1
0
 /**
  * @covers Moneybird\Estimate::setContact
  */
 public function testSetContact()
 {
     $this->assertInstanceOf('Moneybird\\Contact', self::$contact);
     $estimate = new Estimate(array(), self::$contact);
     $this->assertEquals(self::$contact->address1, $estimate->address1);
     $estimate = new Estimate();
     $estimate->setContact(self::$contact);
     $this->assertEquals(self::$contact->address1, $estimate->address1);
 }