コード例 #1
0
 /**
  * Customer group ID is set to quote object.
  */
 public function testGetCustomerGroupId()
 {
     /** Preconditions */
     $customerGroupId = 33;
     $this->quote->setCustomerGroupId($customerGroupId);
     /** SUT execution */
     $this->assertEquals($customerGroupId, $this->quote->getCustomerGroupId(), "Customer group ID is invalid");
 }