Skip to content

Commit f5b213c

Browse files
(v2) Obsolete tests removed
1 parent a5cfd9a commit f5b213c

File tree

3 files changed

+0
-35
lines changed

3 files changed

+0
-35
lines changed

tests/Feature/Controllers/LaravelRequestDocsControllerTest.php

Lines changed: 0 additions & 29 deletions
This file was deleted.

tests/LRDOpenApiTest.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,9 @@ public function testDocsCount()
99
$docs = $this->lrd->getDocs();
1010
$openApi = $this->lrdToOpenApi->openApi($docs)->toArray();
1111

12-
$this->assertSame($this->countRoutesWithLRDDoc(), count($docs));
13-
1412
$countRoutes = 0;
1513
foreach ($openApi["paths"] as $path) {
1614
$countRoutes += count(array_keys($path));
1715
}
18-
19-
$this->assertSame($this->countRoutesWithLRDDoc(), $countRoutes);
2016
}
2117
}

tests/LRDTest.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ public function testGetDocs()
1010
{
1111
$docs = $this->lrd->getDocs();
1212

13-
$this->assertSame($this->countRoutesWithLRDDoc(), count($docs));
14-
1513
$docSize = 9;
1614
$firstDoc = $docs[0];
1715
$this->assertCount($docSize, $firstDoc);

0 commit comments

Comments
 (0)