File tree Expand file tree Collapse file tree 5 files changed +8
-2
lines changed Expand file tree Collapse file tree 5 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
<phive xmlns =" https://phar.io/phive" >
3
- <phar name =" phpunit" version =" ^11 .0.5 " installed =" 11.5.7 " location =" ./tools/phpunit" copy =" true" />
3
+ <phar name =" phpunit" version =" ^12 .0.2 " installed =" 12.0.2 " location =" ./tools/phpunit" copy =" true" />
4
4
<phar name =" psalm" version =" ^5.23.1" installed =" 5.26.1" location =" ./tools/psalm" copy =" true" />
5
5
<phar name =" phpcs" version =" ^3.9.0" installed =" 3.11.3" location =" ./tools/phpcs" copy =" true" />
6
6
<phar name =" phpcbf" version =" ^3.9.0" installed =" 3.11.3" location =" ./tools/phpcbf" copy =" true" />
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
<phpunit
3
3
xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4
- xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/11.5 /phpunit.xsd"
4
+ xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/12.0 /phpunit.xsd"
5
5
bootstrap =" ../vendor/autoload.php"
6
6
cacheDirectory =" ../var/cache/.phpunit.cache"
7
7
colors =" true"
Original file line number Diff line number Diff line change 6
6
7
7
use CyrilVerloop \Codingame \Generator \CGCodeGenerator ;
8
8
use CyrilVerloop \Codingame \Generator \CodeGeneratorConfiguration ;
9
+ use CyrilVerloop \Codingame \Generator \FileGenerator ;
9
10
use org \bovigo \vfs \vfsStream ;
10
11
use PHPUnit \Framework \Attributes as PA ;
11
12
use PHPUnit \Framework \TestCase ;
16
17
#[
17
18
PA \CoversClass(CGCodeGenerator::class),
18
19
PA \UsesClass(CodeGeneratorConfiguration::class),
20
+ PA \UsesClass(FileGenerator::class),
19
21
PA \Group('cgpt ' ),
20
22
PA \Group('cgpt_generator ' ),
21
23
PA \Group('cgpt_generator_CGCodeGenerator ' )
Original file line number Diff line number Diff line change 5
5
namespace CyrilVerloop \Codingame \Tests \Generator ;
6
6
7
7
use CyrilVerloop \Codingame \Generator \CGTestGenerator ;
8
+ use CyrilVerloop \Codingame \Generator \FileGenerator ;
8
9
use CyrilVerloop \Codingame \Generator \TestConfiguration ;
9
10
use CyrilVerloop \Codingame \Generator \TestConfigurations ;
10
11
use CyrilVerloop \Codingame \Generator \TestGeneratorConfiguration ;
17
18
*/
18
19
#[
19
20
PA \CoversClass(CGTestGenerator::class),
21
+ PA \UsesClass(FileGenerator::class),
20
22
PA \UsesClass(TestGeneratorConfiguration::class),
21
23
PA \UsesClass(TestConfiguration::class),
22
24
PA \UsesClass(TestConfigurations::class),
Original file line number Diff line number Diff line change 9
9
use CyrilVerloop \Codingame \Configuration \TestConfigurations ;
10
10
use CyrilVerloop \Codingame \Generator \CGCodeGenerator ;
11
11
use CyrilVerloop \Codingame \Generator \CGTestGenerator ;
12
+ use CyrilVerloop \Codingame \Generator \FileGenerator ;
12
13
use CyrilVerloop \Codingame \Generator \FilesGenerator ;
13
14
use CyrilVerloop \Codingame \Generator \CodeGeneratorConfiguration ;
14
15
use CyrilVerloop \Codingame \Generator \TestConfiguration as TCGenerator ;
30
31
PA \UsesClass(CodeGeneratorConfiguration::class),
31
32
PA \UsesClass(ConfigurationConvertor::class),
32
33
PA \UsesClass(ConfigurationParser::class),
34
+ PA \UsesClass(FileGenerator::class),
33
35
PA \UsesClass(ParsedConfiguration::class),
34
36
PA \UsesClass(TCGenerator::class),
35
37
PA \UsesClass(TCsGenerator::class),
You can’t perform that action at this time.
0 commit comments