| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | public function testIndexAction(): void |
||
| 15 | { |
||
| 16 | $params = ['action' => 'index', 'controller' => 'activity', 'module' => 'default']; |
||
| 17 | $url = $this->url($this->urlizeOptions($params)); |
||
| 18 | $this->dispatch($url); |
||
| 19 | |||
| 20 | // assertions |
||
| 21 | $this->assertCommonThings($params); |
||
| 22 | |||
| 23 | $this->assertQueryContentContains('h2', 'Overall activity'); |
||
| 24 | } |
||
| 50 |