Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | public function testEndpointGeneratePath() |
||
12 | { |
||
13 | $path = $this->moip->notifications()->generatePath('notifications', 'NPR-CQU74AQOIVCV'); |
||
14 | $expected = sprintf('%s/%s/%s/%s', MoipResource::VERSION, NotificationPreferences::PATH, 'notifications', 'NPR-CQU74AQOIVCV'); |
||
15 | $this->assertEquals($expected, $path); |
||
16 | } |
||
17 | } |
||
18 |