Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
38 | public function testAddSerialNumber() |
||
39 | { |
||
40 | $this->object->addSerialNumber('1'); |
||
|
|||
41 | $this->object->addSerialNumber('2', true); |
||
42 | $this->object->addSerialNumber('3'); |
||
43 | $this->assertEquals([ |
||
44 | 'mnozMj' => 3, |
||
45 | 'vyrobniCislaPrijata' => [ |
||
46 | ['kod' => '1'], |
||
47 | ['kod' => '2', 'vyrobnicislohlav' => 1], |
||
48 | ['kod' => '3'] |
||
49 | ] |
||
50 | ], $this->object->getData()); |
||
51 | } |
||
53 |