Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
15 | public function onBarcode_search_catalog() |
||
16 | { |
||
17 | $catalog = $this->getMock('\Acme\Dobles\Catalog', array('search')); |
||
18 | $screen = $this->getMock('\Acme\Dobles\Screen'); |
||
19 | |||
20 | $pointOfSale = new \Acme\Dobles\PointOfSale($catalog, $screen); |
||
21 | |||
22 | // verificar |
||
23 | $catalog->expects($this->once())->method('search')->with('123'); |
||
24 | |||
25 | $pointOfSale->onBarcode('123'); |
||
26 | } |
||
27 | } |
||
28 |