66
77class CardTest extends TestCase
88{
9- /** @test */
10- public function it_can_generate_bootstrap_5_card_title ()
9+ public function test_it_can_generate_bootstrap_5_card_title ()
1110 {
1211 $ this ->setFrameworkBootstrap5 ();
1312 $ this ->registerTestRoute ('form-card-title ' );
@@ -17,8 +16,7 @@ public function it_can_generate_bootstrap_5_card_title()
1716 ->seeInElement ('h5.card-title ' , 'Card title ' );
1817 }
1918
20- /** @test */
21- public function it_can_generate_material_admin_26_card_title ()
19+ public function test_it_can_generate_material_admin_26_card_title ()
2220 {
2321 $ this ->setFrameworkMaterialAdmin26 ();
2422 $ this ->registerTestRoute ('form-card-title ' );
@@ -28,8 +26,7 @@ public function it_can_generate_material_admin_26_card_title()
2826 ->seeInElement ('h4.card-title ' , 'Card title ' );
2927 }
3028
31- /** @test */
32- public function it_can_generate_bootstrap_5_card_subtitle ()
29+ public function test_it_can_generate_bootstrap_5_card_subtitle ()
3330 {
3431 $ this ->setFrameworkBootstrap5 ();
3532 $ this ->registerTestRoute ('form-card-subtitle ' );
@@ -39,8 +36,7 @@ public function it_can_generate_bootstrap_5_card_subtitle()
3936 ->seeInElement ('h6.card-subtitle ' , 'Card subtitle ' );
4037 }
4138
42- /** @test */
43- public function it_can_generate_material_admin_26_card_subtitle ()
39+ public function test_it_can_generate_material_admin_26_card_subtitle ()
4440 {
4541 $ this ->setFrameworkMaterialAdmin26 ();
4642 $ this ->registerTestRoute ('form-card-subtitle ' );
@@ -50,8 +46,7 @@ public function it_can_generate_material_admin_26_card_subtitle()
5046 ->seeInElement ('h6.card-subtitle ' , 'Card subtitle ' );
5147 }
5248
53- /** @test */
54- public function it_can_generate_bootstrap_5_card_header ()
49+ public function test_it_can_generate_bootstrap_5_card_header ()
5550 {
5651 $ this ->setFrameworkBootstrap5 ();
5752 $ this ->registerTestRoute ('form-card-header ' );
@@ -61,8 +56,7 @@ public function it_can_generate_bootstrap_5_card_header()
6156 ->seeInElement ('div.card-header ' , 'Card header ' );
6257 }
6358
64- /** @test */
65- public function it_can_generate_material_admin_26_card_header ()
59+ public function test_it_can_generate_material_admin_26_card_header ()
6660 {
6761 $ this ->setFrameworkMaterialAdmin26 ();
6862 $ this ->registerTestRoute ('form-card-header ' );
@@ -72,8 +66,7 @@ public function it_can_generate_material_admin_26_card_header()
7266 ->seeInElement ('div.card-header ' , 'Card header ' );
7367 }
7468
75- /** @test */
76- public function it_can_generate_bootstrap_5_card_footer ()
69+ public function test_it_can_generate_bootstrap_5_card_footer ()
7770 {
7871 $ this ->setFrameworkBootstrap5 ();
7972 $ this ->registerTestRoute ('form-card-footer ' );
@@ -83,8 +76,7 @@ public function it_can_generate_bootstrap_5_card_footer()
8376 ->seeInElement ('div.card-footer ' , 'Card footer ' );
8477 }
8578
86- /** @test */
87- public function it_can_generate_material_admin_26_card_footer ()
79+ public function test_it_can_generate_material_admin_26_card_footer ()
8880 {
8981 $ this ->setFrameworkMaterialAdmin26 ();
9082 $ this ->registerTestRoute ('form-card-footer ' );
@@ -94,8 +86,7 @@ public function it_can_generate_material_admin_26_card_footer()
9486 ->seeInElement ('div.card-footer ' , 'Card footer ' );
9587 }
9688
97- /** @test */
98- public function it_can_generate_bootstrap_5_card ()
89+ public function test_it_can_generate_bootstrap_5_card ()
9990 {
10091 $ this ->setFrameworkBootstrap5 ();
10192 $ this ->registerTestRoute ('form-card ' );
@@ -116,8 +107,7 @@ public function it_can_generate_bootstrap_5_card()
116107 });
117108 }
118109
119- /** @test */
120- public function it_can_generate_bootstrap_5_card_with_header ()
110+ public function test_it_can_generate_bootstrap_5_card_with_header ()
121111 {
122112 $ this ->setFrameworkBootstrap5 ();
123113 $ this ->registerTestRoute ('form-card ' );
@@ -134,8 +124,7 @@ public function it_can_generate_bootstrap_5_card_with_header()
134124 });
135125 }
136126
137- /** @test */
138- public function it_can_generate_material_admin_26_card_with_header ()
127+ public function test_it_can_generate_material_admin_26_card_with_header ()
139128 {
140129 $ this ->setFrameworkMaterialAdmin26 ();
141130 $ this ->registerTestRoute ('form-card ' );
@@ -152,8 +141,7 @@ public function it_can_generate_material_admin_26_card_with_header()
152141 });
153142 }
154143
155- /** @test */
156- public function it_can_generate_bootstrap_5_card_with_subtitle ()
144+ public function test_it_can_generate_bootstrap_5_card_with_subtitle ()
157145 {
158146 $ this ->setFrameworkBootstrap5 ();
159147 $ this ->registerTestRoute ('form-card ' );
@@ -170,8 +158,7 @@ public function it_can_generate_bootstrap_5_card_with_subtitle()
170158 });
171159 }
172160
173- /** @test */
174- public function it_can_generate_bootstrap_5_card_with_image_top ()
161+ public function test_it_can_generate_bootstrap_5_card_with_image_top ()
175162 {
176163 $ this ->setFrameworkBootstrap5 ();
177164 $ this ->registerTestRoute ('form-card ' );
@@ -187,8 +174,7 @@ public function it_can_generate_bootstrap_5_card_with_image_top()
187174 });
188175 }
189176
190- /** @test */
191- public function it_can_generate_bootstrap_5_card_with_footer ()
177+ public function test_it_can_generate_bootstrap_5_card_with_footer ()
192178 {
193179 $ this ->setFrameworkBootstrap5 ();
194180 $ this ->registerTestRoute ('form-card ' );
@@ -204,8 +190,7 @@ public function it_can_generate_bootstrap_5_card_with_footer()
204190 });
205191 }
206192
207- /** @test */
208- public function it_can_generate_material_admin_26_card_with_footer ()
193+ public function test_it_can_generate_material_admin_26_card_with_footer ()
209194 {
210195 $ this ->setFrameworkMaterialAdmin26 ();
211196 $ this ->registerTestRoute ('form-card ' );
@@ -223,8 +208,7 @@ public function it_can_generate_material_admin_26_card_with_footer()
223208
224209 // write test for material admin
225210
226- /** @test */
227- public function it_can_generate_material_admin_26_card ()
211+ public function test_it_can_generate_material_admin_26_card ()
228212 {
229213 $ this ->setFrameworkMaterialAdmin26 ();
230214 $ this ->registerTestRoute ('form-card ' );
@@ -247,8 +231,7 @@ public function it_can_generate_material_admin_26_card()
247231
248232
249233
250- /** @test */
251- public function it_can_generate_material_admin_26_card_with_subtitle ()
234+ public function test_it_can_generate_material_admin_26_card_with_subtitle ()
252235 {
253236 $ this ->setFrameworkMaterialAdmin26 ();
254237 $ this ->registerTestRoute ('form-card ' );
@@ -265,8 +248,7 @@ public function it_can_generate_material_admin_26_card_with_subtitle()
265248 });
266249 }
267250
268- /** @test */
269- public function it_can_generate_material_admin_26_card_with_image_top ()
251+ public function test_it_can_generate_material_admin_26_card_with_image_top ()
270252 {
271253 $ this ->setFrameworkMaterialAdmin26 ();
272254 $ this ->registerTestRoute ('form-card ' );
0 commit comments