| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 31 | protected function setUp() |
||
| 32 | { |
||
| 33 | $this->target = new Target('server', 1); |
||
| 34 | $this->type = new Type('server_traf'); |
||
| 35 | $this->quantity = Quantity::gigabyte(10); |
||
| 36 | $this->money = Money::USD(15); |
||
| 37 | $this->price = new SinglePrice($this->target, $this->type, $this->quantity, $this->money); |
||
| 38 | } |
||
| 39 | |||
| 49 |