Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
28 | public function testConstructorArgumentIsGetParticipantIdResult() |
||
29 | { |
||
30 | $class1 = new ParticipantTestHelper(1); |
||
31 | $this->assertEquals(1, $class1->getParticipantId()); |
||
32 | |||
33 | $class2 = new ParticipantTestHelper('foo'); |
||
34 | $this->assertEquals('foo', $class2->getParticipantId()); |
||
35 | } |
||
36 | } |
||
37 |