| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 31 | public function testSetPhantomJSHelper(): void { |
||
| 32 | |||
| 33 | // Set a PhantomJS helper mock. |
||
| 34 | $phantomJSHelper = new PhantomJSHelper("path", "base"); |
||
| 35 | |||
| 36 | $obj = new TestPhantomJSHelperTrait(); |
||
| 37 | |||
| 38 | $obj->setPhantomJSHelper($phantomJSHelper); |
||
| 39 | $this->assertSame($phantomJSHelper, $obj->getPhantomJSHelper()); |
||
| 40 | } |
||
| 41 | |||
| 54 |