|
9 | 9 | */
|
10 | 10 | namespace PHPUnit\TextUI\XmlConfiguration;
|
11 | 11 |
|
12 |
| -use PHPUnit\Framework\Attributes\TestDox; |
| 12 | +use PHPUnit\Framework\Attributes\DataProvider; |
13 | 13 | use PHPUnit\Framework\TestCase;
|
14 | 14 | use PHPUnit\Util\Xml\Loader as XmlLoader;
|
15 | 15 |
|
16 | 16 | final class MigratorTest extends TestCase
|
17 | 17 | {
|
18 |
| - #[TestDox('Can migrate PHPUnit 9.2 configuration')] |
19 |
| - public function testCanMigratePhpUnit92Configuration(): void |
| 18 | + public static function provider(): array |
20 | 19 | {
|
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 | + ]; |
29 | 30 | }
|
30 | 31 |
|
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 |
33 | 34 | {
|
34 | 35 | $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)), |
41 | 38 | );
|
42 | 39 | }
|
43 | 40 | }
|
0 commit comments