Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
20 | public function testGetCMSFields() |
||
21 | { |
||
22 | $instagramPost = InstagramPost::create(); |
||
23 | $instagramPost->ImageThumbnailURL = 'https://www.google.com/image.png'; |
||
24 | $instagramPost->write(); |
||
25 | |||
26 | $fields = $instagramPost->getCMSFields(); |
||
27 | |||
28 | $this->assertNotNull($fields); |
||
29 | $this->assertNotNull($fields->fieldByName('Root')->fieldByName('Main')->fieldByName('Show')); |
||
30 | } |
||
31 | } |
||
32 |