Skip to content

Commit 948e2e3

Browse files
committed
Fix tests
1 parent ad3391b commit 948e2e3

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

phpunit.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
3+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd"
44
colors="true"
55
backupGlobals="true"
66
stopOnFailure="false"
@@ -17,8 +17,8 @@
1717
</include>
1818
</coverage>
1919
<testsuites>
20-
<testsuite name="Test Suite">
21-
<directory suffix="TestCase.php">tests</directory>
20+
<testsuite name="unit">
21+
<directory suffix="Test.php">tests</directory>
2222
</testsuite>
2323
</testsuites>
2424
<php>

tests/DirectivesTestCase.php renamed to tests/DirectivesTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
use FFI\Preprocessor\Exception\DirectiveEvaluationException;
2121
use FFI\Preprocessor\Internal\Runtime\DirectiveExecutor;
2222

23-
class DirectivesTestCase extends TestCase
23+
class DirectivesTest extends TestCase
2424
{
2525
/**
2626
* @return void

tests/IncludeDirectoriesTestCase.php renamed to tests/IncludeDirectoriesTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
use FFI\Preprocessor\Io\DirectoriesRepository;
1515

16-
class IncludeDirectoriesTestCase extends TestCase
16+
class IncludeDirectoriesTest extends TestCase
1717
{
1818
/**
1919
* @return void

0 commit comments

Comments
 (0)