Example #1
0
 public function testCustomerId()
 {
     $this->address->setParentId(self::ORIG_PARENT_ID);
     $this->assertEquals(self::ORIG_PARENT_ID, $this->address->getCustomerId());
     $this->address->setCustomerId(self::ORIG_CUSTOMER_ID);
     $this->assertEquals(self::ORIG_CUSTOMER_ID, $this->address->getCustomerId());
 }