1
- <?php declare (strict_types=1 );
1
+ <?php
2
+
3
+ declare (strict_types=1 );
2
4
3
5
namespace Tests \Feature \Controller \Api \V1 ;
4
6
10
12
*/
11
13
class ApiTestCase extends TestCase
12
14
{
15
+ public static function setUpBeforeClass (): void
16
+ {
17
+ parent ::setUpBeforeClass ();
18
+ self ::markTestSkipped ();
19
+ }
20
+
13
21
/**
14
22
* Default German Translation from Factories
15
23
*/
@@ -40,7 +48,6 @@ class ApiTestCase extends TestCase
40
48
*/
41
49
protected $ structure = [];
42
50
43
-
44
51
/**
45
52
* Index Method Tests
46
53
*/
@@ -67,7 +74,7 @@ public function testIndexPaginatedDefault(): void
67
74
/**
68
75
* Test Index with no Pagination
69
76
*
70
- * @param int $allCount Count of Resources in DB
77
+ * @param int $allCount Count of Resources in DB
71
78
*/
72
79
public function testIndexAll (int $ allCount ): void
73
80
{
@@ -94,7 +101,7 @@ public function testIndexAll(int $allCount): void
94
101
/**
95
102
* Test Index with custom Pagination (limit)
96
103
*
97
- * @param int $limit The Pagination Limit
104
+ * @param int $limit The Pagination Limit
98
105
*/
99
106
public function testIndexPaginatedCustom (int $ limit )
100
107
{
@@ -121,7 +128,7 @@ public function testIndexPaginatedCustom(int $limit)
121
128
/**
122
129
* Test Index with invalid Pagination (limit)
123
130
*
124
- * @param int $limit The Pagination Limit
131
+ * @param int $limit The Pagination Limit
125
132
*/
126
133
public function testIndexInvalidLimit (int $ limit )
127
134
{
0 commit comments