예제 #1
0
 public function testOrder()
 {
     // initialize the API client
     $order = new Model\Order();
     $order->setStatus("placed");
     $this->assertSame("placed", $order->getStatus());
 }