示例#1
0
 public function testChannel()
 {
     $order = new BaseOrder();
     $channel = new Channel();
     $channel->setName('store1');
     $order->setChannel($channel);
     $this->assertEquals('store1', $order->getChannel()->getName());
 }
示例#2
0
文件: Order.php 项目: vespolina/core
 public function __construct()
 {
     parent::__construct();
 }