@@ -17,7 +17,7 @@ class ScriptsTest extends TestCase
17
17
*/
18
18
public function webDirectoryHasBeenCreated ()
19
19
{
20
- self ::assertDirectoryExists ($ this ->getAbsoluteWebDirectoryPath ());
20
+ static ::assertDirectoryExists ($ this ->getAbsoluteWebDirectoryPath ());
21
21
}
22
22
23
23
/**
@@ -48,15 +48,15 @@ public function webDirectoryFilesDataProvider(): array
48
48
*/
49
49
public function webDirectoryFilesExist (string $ fileName )
50
50
{
51
- self ::assertFileExists ($ this ->getAbsoluteWebDirectoryPath () . $ fileName );
51
+ static ::assertFileExists ($ this ->getAbsoluteWebDirectoryPath () . $ fileName );
52
52
}
53
53
54
54
/**
55
55
* @test
56
56
*/
57
57
public function binariesDirectoryHasBeenCreated ()
58
58
{
59
- self ::assertDirectoryExists ($ this ->getAbsoluteBinariesDirectoryPath ());
59
+ static ::assertDirectoryExists ($ this ->getAbsoluteBinariesDirectoryPath ());
60
60
}
61
61
62
62
/**
@@ -84,7 +84,7 @@ public function binariesDataProvider(): array
84
84
*/
85
85
public function binariesExist (string $ fileName )
86
86
{
87
- self ::assertFileExists ($ this ->getAbsoluteBinariesDirectoryPath () . $ fileName );
87
+ static ::assertFileExists ($ this ->getAbsoluteBinariesDirectoryPath () . $ fileName );
88
88
}
89
89
90
90
/**
@@ -100,7 +100,7 @@ private function getBundleConfigurationFilePath(): string
100
100
*/
101
101
public function bundleConfigurationFileExists ()
102
102
{
103
- self ::assertFileExists ($ this ->getBundleConfigurationFilePath ());
103
+ static ::assertFileExists ($ this ->getBundleConfigurationFilePath ());
104
104
}
105
105
106
106
/**
@@ -122,7 +122,7 @@ public function bundleConfigurationFileContainsModuleBundles(string $bundleClass
122
122
{
123
123
$ fileContents = file_get_contents ($ this ->getBundleConfigurationFilePath ());
124
124
125
- self ::assertContains ($ bundleClassName , $ fileContents );
125
+ static ::assertContains ($ bundleClassName , $ fileContents );
126
126
}
127
127
128
128
/**
@@ -138,22 +138,22 @@ private function getModuleRoutesConfigurationFilePath(): string
138
138
*/
139
139
public function moduleRoutesConfigurationFileExists ()
140
140
{
141
- self ::assertFileExists ($ this ->getModuleRoutesConfigurationFilePath ());
141
+ static ::assertFileExists ($ this ->getModuleRoutesConfigurationFilePath ());
142
142
}
143
143
144
144
/**
145
145
* @test
146
146
*/
147
147
public function parametersConfigurationFileExists ()
148
148
{
149
- self ::assertFileExists (dirname (__DIR__ , 3 ) . '/Configuration/parameters.yml ' );
149
+ static ::assertFileExists (dirname (__DIR__ , 3 ) . '/Configuration/parameters.yml ' );
150
150
}
151
151
152
152
/**
153
153
* @test
154
154
*/
155
155
public function modulesConfigurationFileExists ()
156
156
{
157
- self ::assertFileExists (dirname (__DIR__ , 3 ) . '/Configuration/config_modules.yml ' );
157
+ static ::assertFileExists (dirname (__DIR__ , 3 ) . '/Configuration/config_modules.yml ' );
158
158
}
159
159
}
0 commit comments