Example #1
0
 public function testChannel()
 {
     $order = new BaseOrder();
     $channel = new Channel();
     $channel->setName('store1');
     $order->setChannel($channel);
     $this->assertEquals('store1', $order->getChannel()->getName());
 }
Example #2
0
 public function __construct()
 {
     parent::__construct();
 }