Skip to content

Commit 3449010

Browse files
Refactor
1 parent 9c6bd39 commit 3449010

File tree

1 file changed

+16
-19
lines changed

1 file changed

+16
-19
lines changed

tests/unit/TextUI/Configuration/Xml/MigratorTest.php

+16-19
Original file line numberDiff line numberDiff line change
@@ -9,35 +9,32 @@
99
*/
1010
namespace PHPUnit\TextUI\XmlConfiguration;
1111

12-
use PHPUnit\Framework\Attributes\TestDox;
12+
use PHPUnit\Framework\Attributes\DataProvider;
1313
use PHPUnit\Framework\TestCase;
1414
use PHPUnit\Util\Xml\Loader as XmlLoader;
1515

1616
final class MigratorTest extends TestCase
1717
{
18-
#[TestDox('Can migrate PHPUnit 9.2 configuration')]
19-
public function testCanMigratePhpUnit92Configuration(): void
18+
public static function provider(): array
2019
{
21-
$this->assertEquals(
22-
(new XmlLoader)->loadFile(__DIR__ . '/../../../../_files/XmlConfigurationMigration/output-9.2.xml'),
23-
(new XmlLoader)->load(
24-
(new Migrator)->migrate(
25-
__DIR__ . '/../../../../_files/XmlConfigurationMigration/input-9.2.xml',
26-
),
27-
),
28-
);
20+
return [
21+
'PHPUnit 9.2' => [
22+
__DIR__ . '/../../../../_files/XmlConfigurationMigration/output-9.2.xml',
23+
__DIR__ . '/../../../../_files/XmlConfigurationMigration/input-9.2.xml',
24+
],
25+
'PHPUnit 9.5' => [
26+
__DIR__ . '/../../../../_files/XmlConfigurationMigration/output-9.5.xml',
27+
__DIR__ . '/../../../../_files/XmlConfigurationMigration/input-9.5.xml',
28+
],
29+
];
2930
}
3031

31-
#[TestDox('Can migrate PHPUnit 9.5 configuration')]
32-
public function testCanMigratePhpUnit95Configuration(): void
32+
#[DataProvider('provider')]
33+
public function testCanMigrateConfigurationFileThatValidatesAgainstPreviousSchema(string $output, string $input): void
3334
{
3435
$this->assertEquals(
35-
(new XmlLoader)->loadFile(__DIR__ . '/../../../../_files/XmlConfigurationMigration/output-9.5.xml'),
36-
(new XmlLoader)->load(
37-
(new Migrator)->migrate(
38-
__DIR__ . '/../../../../_files/XmlConfigurationMigration/input-9.5.xml',
39-
),
40-
),
36+
(new XmlLoader)->loadFile($output),
37+
(new XmlLoader)->load((new Migrator)->migrate($input)),
4138
);
4239
}
4340
}

0 commit comments

Comments
 (0)