Skip to content

Commit 1e4a386

Browse files
committed
ci(workflows): Remove faulty @covers annotations.
1 parent 3e4aa8f commit 1e4a386

File tree

2 files changed

+0
-20
lines changed

2 files changed

+0
-20
lines changed

tests/Infrastructure/InMemory/PaginatorTest.php

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -154,10 +154,6 @@ public function testArrayAccessWithInvalidOffset(): void
154154
$this->assertNull($paginator['invalid']);
155155
}
156156

157-
/**
158-
* @covers \GeekCell\Ddd\Infrastructure\InMemoryPaginator::getIterator
159-
* @covers \GeekCell\Ddd\Infrastructure\InMemoryPaginator::count
160-
*/
161157
public function testGetIteratorAndCount(): void
162158
{
163159
// Given
@@ -193,10 +189,6 @@ public function testGetIteratorAndCount(): void
193189
$this->assertEquals(2, count($paginator));
194190
}
195191

196-
/**
197-
* @covers \GeekCell\Ddd\Infrastructure\InMemoryPaginator::getIterator
198-
* @covers \GeekCell\Ddd\Infrastructure\InMemoryPaginator::count
199-
*/
200192
public function testGetIteratorWithEmptyCollection(): void
201193
{
202194
// Given
@@ -223,10 +215,6 @@ public function testGetIteratorWithEmptyCollection(): void
223215
$this->assertEquals(0, count($paginator));
224216
}
225217

226-
/**
227-
* @covers \GeekCell\Ddd\Infrastructure\InMemoryPaginator::getIterator
228-
* @covers \GeekCell\Ddd\Infrastructure\InMemoryPaginator::count
229-
*/
230218
public function testGetIteratorWithCurrentPageTooHigh(): void
231219
{
232220
// Given

tests/Infrastructure/InMemory/RepositoryTest.php

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,6 @@ public function __construct()
6161
};
6262
}
6363

64-
/**
65-
* @covers \GeekCell\Ddd\Infrastructure\InMemoryRepository::collect
66-
* @covers \GeekCell\Ddd\Infrastructure\InMemoryRepository::count
67-
*/
6864
public function testCollectAndCount(): void
6965
{
7066
// Given
@@ -79,10 +75,6 @@ public function testCollectAndCount(): void
7975
$this->assertEquals(count($this->items), count($result));
8076
}
8177

82-
/**
83-
* @covers \GeekCell\Ddd\Infrastructure\Repository::paginate
84-
* @covers \GeekCell\Ddd\Infrastructure\Repository::count
85-
*/
8678
public function testPaginateAndCount(): void
8779
{
8880
// Given

0 commit comments

Comments
 (0)