示例#1
0
 public function testSet()
 {
     $context = new PricingContext();
     $context->set('quantity', 3);
     $this->assertSame(3, $context->get('quantity'), 'the quantity that was set should be returned');
 }