| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 31 | public function testSetThemeManager(): void { |
||
| 32 | |||
| 33 | // Set a Theme manager mock. |
||
| 34 | $themeManager = new ThemeManager($this->logger, $this->twigEnvironment); |
||
| 35 | |||
| 36 | $obj = new TestThemeManagerTrait(); |
||
| 37 | |||
| 38 | $obj->setThemeManager($themeManager); |
||
| 39 | $this->assertSame($themeManager, $obj->getThemeManager()); |
||
| 40 | } |
||
| 41 | |||
| 54 |