2
2
3
3
namespace Yajra \DataTables \Html \Tests ;
4
4
5
+ use PHPUnit \Framework \Attributes \Test ;
5
6
use Yajra \DataTables \Html \Builder ;
6
7
use Yajra \DataTables \Html \Button ;
7
8
use Yajra \DataTables \Html \SearchPane ;
8
9
9
10
class BuilderOptionsPluginsTest extends TestCase
10
11
{
11
- /** @test */
12
+ #[Test]
12
13
public function it_has_autofill_plugin ()
13
14
{
14
15
$ builder = $ this ->getHtmlBuilder ();
@@ -43,7 +44,7 @@ public function it_has_autofill_plugin()
43
44
$ this ->assertEquals ([1 , 2 ], $ builder ->getAutoFill ('columns ' ));
44
45
}
45
46
46
- /** @test */
47
+ #[Test]
47
48
public function it_has_buttons_plugin ()
48
49
{
49
50
$ builder = $ this ->getHtmlBuilder ();
@@ -63,7 +64,7 @@ public function it_has_buttons_plugin()
63
64
$ this ->assertCount (2 , $ builder ->getButtons ());
64
65
}
65
66
66
- /** @test */
67
+ #[Test]
67
68
public function it_has_col_reorder_plugin ()
68
69
{
69
70
$ builder = $ this ->getHtmlBuilder ();
@@ -85,7 +86,7 @@ public function it_has_col_reorder_plugin()
85
86
$ this ->assertEquals (true , $ builder ->getColReorder ('realtime ' ));
86
87
}
87
88
88
- /** @test */
89
+ #[Test]
89
90
public function it_has_fixed_columns_plugin ()
90
91
{
91
92
$ builder = $ this ->getHtmlBuilder ();
@@ -103,7 +104,7 @@ public function it_has_fixed_columns_plugin()
103
104
$ this ->assertEquals (0 , $ builder ->getFixedColumns ('rightColumns ' ));
104
105
}
105
106
106
- /** @test */
107
+ #[Test]
107
108
public function it_has_fixed_header_plugin ()
108
109
{
109
110
$ builder = $ this ->getHtmlBuilder ();
@@ -123,7 +124,7 @@ public function it_has_fixed_header_plugin()
123
124
$ this ->assertEquals (0 , $ builder ->getFixedHeader ('headerOffset ' ));
124
125
}
125
126
126
- /** @test */
127
+ #[Test]
127
128
public function it_has_keys_plugin ()
128
129
{
129
130
@@ -160,7 +161,7 @@ public function it_has_keys_plugin()
160
161
$ this ->assertEquals (1 , $ builder ->getKeys ('tabIndex ' ));
161
162
}
162
163
163
- /** @test */
164
+ #[Test]
164
165
public function it_has_responsive_plugin ()
165
166
{
166
167
$ builder = $ this ->getHtmlBuilder ();
@@ -183,7 +184,7 @@ public function it_has_responsive_plugin()
183
184
$ this ->assertEquals ('orthogonal ' , $ builder ->getResponsive ('orthogonal ' ));
184
185
}
185
186
186
- /** @test */
187
+ #[Test]
187
188
public function it_has_row_group_plugin ()
188
189
{
189
190
$ builder = $ this ->getHtmlBuilder ();
@@ -209,7 +210,7 @@ public function it_has_row_group_plugin()
209
210
$ this ->assertEquals (null , $ builder ->getRowGroup ('startRender ' ));
210
211
}
211
212
212
- /** @test */
213
+ #[Test]
213
214
public function it_has_row_reorder_plugin ()
214
215
{
215
216
$ builder = $ this ->getHtmlBuilder ();
@@ -235,7 +236,7 @@ public function it_has_row_reorder_plugin()
235
236
$ this ->assertEquals (true , $ builder ->getRowReorder ('update ' ));
236
237
}
237
238
238
- /** @test */
239
+ #[Test]
239
240
public function it_has_scroller_plugin ()
240
241
{
241
242
$ builder = $ this ->getHtmlBuilder ();
@@ -257,7 +258,7 @@ public function it_has_scroller_plugin()
257
258
$ this ->assertEquals (200 , $ builder ->getScroller ('serverWait ' ));
258
259
}
259
260
260
- /** @test */
261
+ #[Test]
261
262
public function it_has_search_panes_plugin ()
262
263
{
263
264
$ builder = $ this ->getHtmlBuilder ();
@@ -281,7 +282,7 @@ public function it_has_search_panes_plugin()
281
282
$ this ->assertEquals (['show ' => true , 'cascadePanes ' => true ], $ builder ->getAttribute ('searchPanes ' ));
282
283
}
283
284
284
- /** @test */
285
+ #[Test]
285
286
public function it_has_select_plugin ()
286
287
{
287
288
$ builder = $ this ->getHtmlBuilder ();
0 commit comments