(int $reportId)
| 23 | public function testImportKeepsReportWhenFavoriteMarkingFails(): void { |
| 24 | $favoriteHandler = new class { |
| 25 | public function addToFavorites(int $reportId): bool { |
| 26 | throw new \RuntimeException('node with id ' . $reportId . ' not found'); |
| 27 | } |
| 28 | }; |
| 29 | |
| 30 | $tagManager = $this->createMock(\OCP\ITagManager::class); |
no outgoing calls
no test coverage detected