| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | public function testGetTemplate(): void |
||
| 18 | { |
||
| 19 | // setup |
||
| 20 | $bootstrapWidgets = new BootstrapWidgets(); |
||
| 21 | |||
| 22 | // test body |
||
| 23 | $widget = $bootstrapWidgets->getWidget('table-cell-start'); |
||
| 24 | |||
| 25 | // assertions |
||
| 26 | $this->assertStringContainsString('<td', $widget, 'Content of the widget "table-cell-start" was not loaded'); |
||
| 27 | } |
||
| 29 |