@@ -35,7 +35,7 @@ public function setUp(): void
35
35
*/
36
36
public function testGetUnpkgName (): void
37
37
{
38
- $ this -> assertSame ('chart.js ' , $ this ->subject ->getUnpkgName ());
38
+ static :: assertSame ('chart.js ' , $ this ->subject ->getUnpkgName ());
39
39
}
40
40
41
41
/**
@@ -45,9 +45,9 @@ public function testGetUnpkgName(): void
45
45
public function testGetUnpkgVersion (): void
46
46
{
47
47
try {
48
- $ this -> assertIsString ($ this ->subject ->getUnpkgVersion ());
48
+ static :: assertIsString ($ this ->subject ->getUnpkgVersion ());
49
49
} catch (OutOfBoundsException $ exception ) {
50
- $ this -> assertSame ('Package "nnnick/chartjs" is not installed ' , $ exception ->getMessage ());
50
+ static :: assertSame ('Package "nnnick/chartjs" is not installed ' , $ exception ->getMessage ());
51
51
}
52
52
}
53
53
@@ -56,7 +56,7 @@ public function testGetUnpkgVersion(): void
56
56
*/
57
57
public function testGetUnpkgSource (): void
58
58
{
59
- $ this -> assertSame ('dist ' , $ this ->subject ->getUnpkgSource ());
59
+ static :: assertSame ('dist ' , $ this ->subject ->getUnpkgSource ());
60
60
}
61
61
62
62
@@ -71,38 +71,38 @@ public function testGetUnpkgFiles(): void
71
71
2 => 'helpers.js ' ,
72
72
3 => 'helpers.js.map ' ,
73
73
];
74
- $ this -> assertSame ($ result , $ this ->subject ->getUnpkgFiles ());
74
+ static :: assertSame ($ result , $ this ->subject ->getUnpkgFiles ());
75
75
}
76
76
77
77
/**
78
78
* @covers \OpenMage\ComposerPlugin\Copy\Plugins\ChartJs::getComposerName()
79
79
*/
80
80
public function testGetComposerName (): void
81
81
{
82
- $ this -> assertSame ('nnnick/chartjs ' , $ this ->subject ->getComposerName ());
82
+ static :: assertSame ('nnnick/chartjs ' , $ this ->subject ->getComposerName ());
83
83
}
84
84
85
85
/**
86
86
* @covers \OpenMage\ComposerPlugin\Copy\Plugins\ChartJs::getComposerSource()
87
87
*/
88
88
public function testGetComposerSource (): void
89
89
{
90
- $ this -> assertSame ('dist ' , $ this ->subject ->getComposerSource ());
90
+ static :: assertSame ('dist ' , $ this ->subject ->getComposerSource ());
91
91
}
92
92
93
93
/**
94
94
* @covers \OpenMage\ComposerPlugin\Copy\Plugins\ChartJs::getComposerFiles()
95
95
*/
96
96
public function testGetComposerFiles (): void
97
97
{
98
- $ this -> assertSame (['*.js ' , '*.map ' ], $ this ->subject ->getComposerFiles ());
98
+ static :: assertSame (['*.js ' , '*.map ' ], $ this ->subject ->getComposerFiles ());
99
99
}
100
100
101
101
/**
102
102
* @covers \OpenMage\ComposerPlugin\Copy\Plugins\ChartJs::getCopyTarget()
103
103
*/
104
104
public function testGetCopyTarget (): void
105
105
{
106
- $ this -> assertSame ('js/lib/chartjs ' , $ this ->subject ->getCopyTarget ());
106
+ static :: assertSame ('js/lib/chartjs ' , $ this ->subject ->getCopyTarget ());
107
107
}
108
108
}
0 commit comments