Conditions | 1 |
Paths | 1 |
Total Lines | 16 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
14 | public function testGet() |
||
15 | { |
||
16 | $set = new ParameterSet; |
||
17 | $set |
||
18 | ->add('foo', 'bar') |
||
19 | ->add('baz', 'qux'); |
||
20 | |||
21 | $this->assertInstanceOf( |
||
22 | 'Naneau\FileGen\Parameter\Parameter', |
||
23 | $set->get('foo') |
||
24 | ); |
||
25 | $this->assertInstanceOf( |
||
26 | 'Naneau\FileGen\Parameter\Parameter', |
||
27 | $set->get('baz') |
||
28 | ); |
||
29 | } |
||
30 | |||
45 |