Exemplo n.º 1
0
 /**
  * @testdox Possui validação
  * @covers ::check
  */
 public function testCheck()
 {
     $o = new Order();
     $this->assertFalse($o->check());
     $o = new Order(['businessUnit' => 'string', 'orderDate' => 'string', 'orderNumber' => 'string']);
     $this->assertTrue($o->check());
 }