Total Complexity | 6 |
Total Lines | 47 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
7 | class ProgramTest extends UnitTestCase |
||
8 | { |
||
9 | public function testInstantiation() |
||
10 | { |
||
11 | $this->assertInstanceOf('Lyal\Checkr\Entities\Resources\Program', $this->getProgram()); |
||
12 | } |
||
13 | |||
14 | public function testSetId() |
||
15 | { |
||
16 | $program = $this->getProgram(); |
||
17 | $program->id = 'e44aa283528e6fde7d542194'; |
||
|
|||
18 | $this->assertSame('e44aa283528e6fde7d542194',$program->id); |
||
19 | } |
||
20 | |||
21 | public function testFields() |
||
47 | } |
||
48 | |||
49 | } |
||
50 | |||
51 | protected function getProgram($values = NULL) |
||
54 | } |
||
55 | } |