@@ -8,20 +8,33 @@ rm -rf tmp/original
8
8
9
9
php schema.phar generate tmp/original tests/e2e/schema.yml -n -vv --ansi;
10
10
11
- diff tests/e2e/original/App/Entity/Brand.php tmp/original/App/Entity/Brand.php;
12
- diff tests/e2e/original/App/Entity/Person.php tmp/original/App/Entity/Person.php;
13
- diff tests/e2e/original/App/Entity/PostalAddress.php tmp/original/App/Entity/PostalAddress.php;
14
- diff tests/e2e/original/App/Entity/Thing.php tmp/original/App/Entity/Thing.php;
15
- diff tests/e2e/original/App/Enum/GenderType.php tmp/original/App/Enum/GenderType.php;
11
+ diff tests/e2e/original/App/Schema/ Entity/Brand.php tmp/original/App/Schema /Entity/Brand.php;
12
+ diff tests/e2e/original/App/Schema/ Entity/Person.php tmp/original/App/Schema /Entity/Person.php;
13
+ diff tests/e2e/original/App/Schema/ Entity/PostalAddress.php tmp/original/App/Schema /Entity/PostalAddress.php;
14
+ diff tests/e2e/original/App/Schema/ Entity/Thing.php tmp/original/App/Schema /Entity/Thing.php;
15
+ diff tests/e2e/original/App/Schema/ Enum/GenderType.php tmp/original/App/Schema /Enum/GenderType.php;
16
16
17
17
# Already generated files
18
18
19
19
cp -r tests/e2e/customized tmp/
20
20
21
21
php schema.phar generate tmp/customized tests/e2e/schema.yml -n -vv --ansi;
22
22
23
- diff tests/e2e/customized/App/Entity/Brand.php tmp/customized/App/Entity/Brand.php;
24
- diff tests/e2e/customized/App/Entity/Person.php tmp/customized/App/Entity/Person.php;
25
- diff tests/e2e/customized/App/Entity/PostalAddress.php tmp/customized/App/Entity/PostalAddress.php;
26
- diff tests/e2e/customized/App/Entity/Thing.php tmp/customized/App/Entity/Thing.php;
27
- diff tests/e2e/customized/App/Enum/GenderType.php tmp/customized/App/Enum/GenderType.php;
23
+ diff tests/e2e/customized/App/Schema/Entity/Brand.php tmp/customized/App/Schema/Entity/Brand.php;
24
+ diff tests/e2e/customized/App/Schema/Entity/Person.php tmp/customized/App/Schema/Entity/Person.php;
25
+ diff tests/e2e/customized/App/Schema/Entity/PostalAddress.php tmp/customized/App/Schema/Entity/PostalAddress.php;
26
+ diff tests/e2e/customized/App/Schema/Entity/Thing.php tmp/customized/App/Schema/Entity/Thing.php;
27
+ diff tests/e2e/customized/App/Schema/Enum/GenderType.php tmp/customized/App/Schema/Enum/GenderType.php;
28
+
29
+ php schema.phar generate tmp/original tests/e2e/schema_openapi.yml -n -vv --ansi;
30
+
31
+ diff tests/e2e/original/App/OpenApi/Entity/Book.php tmp/original/App/OpenApi/Entity/Book.php;
32
+ diff tests/e2e/original/App/OpenApi/Entity/Parchment.php tmp/original/App/OpenApi/Entity/Parchment.php;
33
+ diff tests/e2e/original/App/OpenApi/Entity/Review.php tmp/original/App/OpenApi/Entity/Review.php;
34
+ diff tests/e2e/original/App/OpenApi/Entity/TopBook.php tmp/original/App/OpenApi/Entity/TopBook.php;
35
+
36
+ php schema.phar generate tmp/original tests/e2e/schema_openapi_ref.yml -n -vv --ansi;
37
+
38
+ diff tests/e2e/original/App/OpenApi/Entity/Order.php tmp/original/App/OpenApi/Entity/Order.php;
39
+ diff tests/e2e/original/App/OpenApi/Entity/Pet.php tmp/original/App/OpenApi/Entity/Pet.php;
40
+ diff tests/e2e/original/App/OpenApi/Entity/User.php tmp/original/App/OpenApi/Entity/User.php;
0 commit comments