Invoke PHPUnit's assertions statically

This commit is contained in:
Daniel Londero
2020-10-04 00:35:14 +02:00
parent d426dbc684
commit 065d314608
99 changed files with 567 additions and 567 deletions

View File

@@ -29,7 +29,7 @@ class DeprecatedConfigParserTest extends TestCase
$result = ($this->postProcessor)($config);
$this->assertEquals($config, $result);
self::assertEquals($config, $result);
}
/** @test */
@@ -46,7 +46,7 @@ class DeprecatedConfigParserTest extends TestCase
$result = ($this->postProcessor)($config);
$this->assertEquals($config, $result);
self::assertEquals($config, $result);
}
/** @test */
@@ -68,7 +68,7 @@ class DeprecatedConfigParserTest extends TestCase
$result = ($this->postProcessor)($config);
$this->assertEquals($expected, $result);
self::assertEquals($expected, $result);
}
/** @test */
@@ -89,7 +89,7 @@ class DeprecatedConfigParserTest extends TestCase
$result = ($this->postProcessor)($config);
$this->assertEquals($expected, $result);
self::assertEquals($expected, $result);
}
/** @test */
@@ -106,6 +106,6 @@ class DeprecatedConfigParserTest extends TestCase
$result = ($this->postProcessor)($config);
$this->assertEquals($expected, $result);
self::assertEquals($expected, $result);
}
}