Skip to content

Commit 63e35f4

Browse files
committed
Rename tests
1 parent 9904285 commit 63e35f4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/BinaryCompatibilityTestCase.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ protected function skipIfVersionNotCompatible(Version $version, string $binary):
4949
* @requires OSFAMILY Windows
5050
* @dataProvider versionsDataProvider
5151
*/
52-
public function testWin32PlatformWithoutContext(Version $version): void
52+
public function testWindowsBinaryCompatibility(Version $version): void
5353
{
5454
if (!\is_file($binary = __DIR__ . '/storage/SDL2.dll')) {
5555
Downloader::zip('https://www.libsdl.org/release/SDL2-%s-win32-x64.zip', [
@@ -66,7 +66,7 @@ public function testWin32PlatformWithoutContext(Version $version): void
6666
* @requires OSFAMILY Linux
6767
* @dataProvider versionsDataProvider
6868
*/
69-
public function testLinuxPlatformWithoutContext(Version $version): void
69+
public function testLinuxBinaryCompatibility(Version $version): void
7070
{
7171
if (($binary = Locator::resolve('libSDL2-2.0.so.0')) === null) {
7272
$this->markTestSkipped('The [libsdl] library must be installed');
@@ -80,7 +80,7 @@ public function testLinuxPlatformWithoutContext(Version $version): void
8080
* @requires OSFAMILY Darwin
8181
* @dataProvider versionsDataProvider
8282
*/
83-
public function testDarwinPlatformWithoutContext(Version $version): void
83+
public function testDarwinBinaryCompatibility(Version $version): void
8484
{
8585
if (($binary = Locator::resolve('libSDL2-2.0.0.dylib')) === null) {
8686
$this->markTestSkipped('The [libsdl] library must be installed');

0 commit comments

Comments
 (0)