Skip to content

Commit cdbc740

Browse files
committed
fix: use Test attribute
1 parent ea04643 commit cdbc740

13 files changed

+118
-115
lines changed

phpunit.xml

+6-15
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,8 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit backupGlobals="false"
3-
backupStaticAttributes="false"
4-
bootstrap="vendor/autoload.php"
5-
colors="true"
6-
convertErrorsToExceptions="true"
7-
convertNoticesToExceptions="true"
8-
convertWarningsToExceptions="true"
9-
processIsolation="false"
10-
stopOnFailure="false"
11-
>
12-
<testsuites>
13-
<testsuite name="Package Test Suite">
14-
<directory suffix=".php">./tests/</directory>
15-
</testsuite>
16-
</testsuites>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" bootstrap="vendor/autoload.php" colors="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.0/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
3+
<testsuites>
4+
<testsuite name="Package Test Suite">
5+
<directory suffix="Test.php">./tests/</directory>
6+
</testsuite>
7+
</testsuites>
178
</phpunit>

tests/BuilderOptionsLanguageTest.php

+6-4
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@
22

33
namespace Yajra\DataTables\Html\Tests;
44

5+
use PHPUnit\Framework\Attributes\Test;
6+
57
class BuilderOptionsLanguageTest extends TestCase
68
{
7-
/** @test */
9+
#[Test]
810
public function it_has_language_aria_options()
911
{
1012
$builder = $this->getHtmlBuilder();
@@ -33,7 +35,7 @@ public function it_has_language_aria_options()
3335
$this->assertEquals('languageAriaSortDescending', $builder->getLanguage('aria')['sortDescending']);
3436
}
3537

36-
/** @test */
38+
#[Test]
3739
public function it_has_language_autofill_options()
3840
{
3941
$builder = $this->getHtmlBuilder();
@@ -62,7 +64,7 @@ public function it_has_language_autofill_options()
6264
$this->assertEquals('languageAutoFillInfo', $builder->getLanguage('autoFill')['info']);
6365
}
6466

65-
/** @test */
67+
#[Test]
6668
public function it_has_language_paginate_options()
6769
{
6870
$builder = $this->getHtmlBuilder();
@@ -82,7 +84,7 @@ public function it_has_language_paginate_options()
8284
$this->assertEquals('languagePaginatePrevious', $builder->getLanguage('paginate')['previous']);
8385
}
8486

85-
/** @test */
87+
#[Test]
8688
public function it_has_language_select_options()
8789
{
8890
$builder = $this->getHtmlBuilder();

tests/BuilderOptionsPluginsTest.php

+13-12
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@
22

33
namespace Yajra\DataTables\Html\Tests;
44

5+
use PHPUnit\Framework\Attributes\Test;
56
use Yajra\DataTables\Html\Builder;
67
use Yajra\DataTables\Html\Button;
78
use Yajra\DataTables\Html\SearchPane;
89

910
class BuilderOptionsPluginsTest extends TestCase
1011
{
11-
/** @test */
12+
#[Test]
1213
public function it_has_autofill_plugin()
1314
{
1415
$builder = $this->getHtmlBuilder();
@@ -43,7 +44,7 @@ public function it_has_autofill_plugin()
4344
$this->assertEquals([1, 2], $builder->getAutoFill('columns'));
4445
}
4546

46-
/** @test */
47+
#[Test]
4748
public function it_has_buttons_plugin()
4849
{
4950
$builder = $this->getHtmlBuilder();
@@ -63,7 +64,7 @@ public function it_has_buttons_plugin()
6364
$this->assertCount(2, $builder->getButtons());
6465
}
6566

66-
/** @test */
67+
#[Test]
6768
public function it_has_col_reorder_plugin()
6869
{
6970
$builder = $this->getHtmlBuilder();
@@ -85,7 +86,7 @@ public function it_has_col_reorder_plugin()
8586
$this->assertEquals(true, $builder->getColReorder('realtime'));
8687
}
8788

88-
/** @test */
89+
#[Test]
8990
public function it_has_fixed_columns_plugin()
9091
{
9192
$builder = $this->getHtmlBuilder();
@@ -103,7 +104,7 @@ public function it_has_fixed_columns_plugin()
103104
$this->assertEquals(0, $builder->getFixedColumns('rightColumns'));
104105
}
105106

106-
/** @test */
107+
#[Test]
107108
public function it_has_fixed_header_plugin()
108109
{
109110
$builder = $this->getHtmlBuilder();
@@ -123,7 +124,7 @@ public function it_has_fixed_header_plugin()
123124
$this->assertEquals(0, $builder->getFixedHeader('headerOffset'));
124125
}
125126

126-
/** @test */
127+
#[Test]
127128
public function it_has_keys_plugin()
128129
{
129130

@@ -160,7 +161,7 @@ public function it_has_keys_plugin()
160161
$this->assertEquals(1, $builder->getKeys('tabIndex'));
161162
}
162163

163-
/** @test */
164+
#[Test]
164165
public function it_has_responsive_plugin()
165166
{
166167
$builder = $this->getHtmlBuilder();
@@ -183,7 +184,7 @@ public function it_has_responsive_plugin()
183184
$this->assertEquals('orthogonal', $builder->getResponsive('orthogonal'));
184185
}
185186

186-
/** @test */
187+
#[Test]
187188
public function it_has_row_group_plugin()
188189
{
189190
$builder = $this->getHtmlBuilder();
@@ -209,7 +210,7 @@ public function it_has_row_group_plugin()
209210
$this->assertEquals(null, $builder->getRowGroup('startRender'));
210211
}
211212

212-
/** @test */
213+
#[Test]
213214
public function it_has_row_reorder_plugin()
214215
{
215216
$builder = $this->getHtmlBuilder();
@@ -235,7 +236,7 @@ public function it_has_row_reorder_plugin()
235236
$this->assertEquals(true, $builder->getRowReorder('update'));
236237
}
237238

238-
/** @test */
239+
#[Test]
239240
public function it_has_scroller_plugin()
240241
{
241242
$builder = $this->getHtmlBuilder();
@@ -257,7 +258,7 @@ public function it_has_scroller_plugin()
257258
$this->assertEquals(200, $builder->getScroller('serverWait'));
258259
}
259260

260-
/** @test */
261+
#[Test]
261262
public function it_has_search_panes_plugin()
262263
{
263264
$builder = $this->getHtmlBuilder();
@@ -281,7 +282,7 @@ public function it_has_search_panes_plugin()
281282
$this->assertEquals(['show' => true, 'cascadePanes' => true], $builder->getAttribute('searchPanes'));
282283
}
283284

284-
/** @test */
285+
#[Test]
285286
public function it_has_select_plugin()
286287
{
287288
$builder = $this->getHtmlBuilder();

tests/BuilderOptionsTest.php

+8-7
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@
22

33
namespace Yajra\DataTables\Html\Tests;
44

5+
use PHPUnit\Framework\Attributes\Test;
56
use Yajra\DataTables\Html\Builder;
67
use Yajra\DataTables\Html\Column;
78

89
class BuilderOptionsTest extends TestCase
910
{
10-
/** @test */
11+
#[Test]
1112
public function it_has_callbacks_options()
1213
{
1314
$builder = $this->getHtmlBuilder();
@@ -45,7 +46,7 @@ public function it_has_callbacks_options()
4546
$this->assertStringContainsString('test livewire', $builder->getAttribute('drawCallback'));
4647
}
4748

48-
/** @test */
49+
#[Test]
4950
public function it_has_columns_options()
5051
{
5152
$builder = $this->getHtmlBuilder();
@@ -103,7 +104,7 @@ public function it_has_columns_options()
103104
$this->assertCount(4, $builder->getColumns());
104105
}
105106

106-
/** @test */
107+
#[Test]
107108
public function it_has_ajax_options()
108109
{
109110
$builder = $this->getHtmlBuilder();
@@ -147,7 +148,7 @@ public function it_has_ajax_options()
147148
$this->assertStringContainsString('#formId', $builder->getAjax('data'));
148149
}
149150

150-
/** @test */
151+
#[Test]
151152
public function it_has_features_options()
152153
{
153154
$builder = $this->getHtmlBuilder();
@@ -181,7 +182,7 @@ public function it_has_features_options()
181182
$this->assertEquals('50vh', $builder->getAttribute('scrollY'));
182183
}
183184

184-
/** @test */
185+
#[Test]
185186
public function it_has_internationalisation_options()
186187
{
187188
$builder = $this->getHtmlBuilder();
@@ -220,7 +221,7 @@ public function it_has_internationalisation_options()
220221
$this->assertEquals('languageUrl', $builder->getLanguage('url'));
221222
}
222223

223-
/** @test */
224+
#[Test]
224225
public function it_has_plugin_attribute_getter()
225226
{
226227
$builder = $this->getHtmlBuilder();
@@ -230,7 +231,7 @@ public function it_has_plugin_attribute_getter()
230231
$this->assertEquals(Builder::SELECT_STYLE_SINGLE, $builder->getPluginAttribute('select', 'style'));
231232
}
232233

233-
/** @test */
234+
#[Test]
234235
public function it_has_options()
235236
{
236237
$builder = $this->getHtmlBuilder();

0 commit comments

Comments
 (0)