Skip to content

Commit

Permalink
Remove broken tests
Browse files Browse the repository at this point in the history
These tests will be fixed in next PR which moves Mock feature to
external repo.
  • Loading branch information
ybelenko committed Jun 14, 2020
1 parent 75637cf commit e5b77d6
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 74 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,6 @@
],
"test-apis": "phpunit --testsuite Apis",
"test-models": "phpunit --testsuite Models",
"test-mock": "phpunit --testsuite Mock",
"test-utils": "phpunit --testsuite Utils",
"phpcs": "phpcs",
"phplint": "phplint ./ --exclude=vendor"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,11 @@
<testsuite name="Models">
<directory>{{modelTestPath}}</directory>
</testsuite>
<testsuite name="Mock">
<directory>{{mockTestPath}}</directory>
</testsuite>
<testsuite name="Utils">
<directory>{{utilsTestPath}}</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">{{apiSrcPath}}</directory>
<directory suffix=".php">{{modelSrcPath}}</directory>
<directory suffix=".php">{{mockSrcPath}}</directory>
<directory suffix=".php">{{utilsSrcPath}}</directory>
</whitelist>
</filter>
<php>
Expand Down
54 changes: 0 additions & 54 deletions samples/server/petstore/php-slim4/.openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -81,61 +81,7 @@ lib/Utils/ModelUtilsTrait.php
lib/Utils/StringUtilsTrait.php
phpcs.xml.dist
phpunit.xml.dist
test/Api/AnotherFakeApiTest.php
test/Api/FakeApiTest.php
test/Api/FakeClassnameTags123ApiTest.php
test/Api/PetApiTest.php
test/Api/StoreApiTest.php
test/Api/UserApiTest.php
test/Mock/OpenApiDataMockerMiddlewareTest.php
test/Mock/OpenApiDataMockerTest.php
test/Model/AdditionalPropertiesAnyTypeTest.php
test/Model/AdditionalPropertiesArrayTest.php
test/Model/AdditionalPropertiesBooleanTest.php
test/Model/AdditionalPropertiesClassTest.php
test/Model/AdditionalPropertiesIntegerTest.php
test/Model/AdditionalPropertiesNumberTest.php
test/Model/AdditionalPropertiesObjectTest.php
test/Model/AdditionalPropertiesStringTest.php
test/Model/AnimalTest.php
test/Model/ApiResponseTest.php
test/Model/ArrayOfArrayOfNumberOnlyTest.php
test/Model/ArrayOfNumberOnlyTest.php
test/Model/ArrayTestTest.php
test/Model/BigCatAllOfTest.php
test/Model/BigCatTest.php
test/Model/CapitalizationTest.php
test/Model/CatAllOfTest.php
test/Model/CatTest.php
test/Model/CategoryTest.php
test/Model/ClassModelTest.php
test/Model/ClientTest.php
test/Model/DogAllOfTest.php
test/Model/DogTest.php
test/Model/EnumArraysTest.php
test/Model/EnumClassTest.php
test/Model/EnumTestTest.php
test/Model/FileSchemaTestClassTest.php
test/Model/FileTest.php
test/Model/FormatTestTest.php
test/Model/HasOnlyReadOnlyTest.php
test/Model/MapTestTest.php
test/Model/MixedPropertiesAndAdditionalPropertiesClassTest.php
test/Model/Model200ResponseTest.php
test/Model/ModelListTest.php
test/Model/ModelReturnTest.php
test/Model/NameTest.php
test/Model/NumberOnlyTest.php
test/Model/OrderTest.php
test/Model/OuterCompositeTest.php
test/Model/OuterEnumTest.php
test/Model/PetTest.php
test/Model/ReadOnlyFirstTest.php
test/Model/SpecialModelNameTest.php
test/Model/TagTest.php
test/Model/TypeHolderDefaultTest.php
test/Model/TypeHolderExampleTest.php
test/Model/UserTest.php
test/Model/XmlItemTest.php
test/Utils/ModelUtilsTraitTest.php
test/Utils/StringUtilsTraitTest.php
2 changes: 0 additions & 2 deletions samples/server/petstore/php-slim4/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,6 @@
],
"test-apis": "phpunit --testsuite Apis",
"test-models": "phpunit --testsuite Models",
"test-mock": "phpunit --testsuite Mock",
"test-utils": "phpunit --testsuite Utils",
"phpcs": "phpcs",
"phplint": "phplint ./ --exclude=vendor"
}
Expand Down
8 changes: 0 additions & 8 deletions samples/server/petstore/php-slim4/phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,11 @@
<testsuite name="Models">
<directory>./test/Model</directory>
</testsuite>
<testsuite name="Mock">
<directory>./test/Mock</directory>
</testsuite>
<testsuite name="Utils">
<directory>./test/Utils</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./lib/Api</directory>
<directory suffix=".php">./lib/Model</directory>
<directory suffix=".php">./lib/Mock</directory>
<directory suffix=".php">./lib/Utils</directory>
</whitelist>
</filter>
<php>
Expand Down

0 comments on commit e5b77d6

Please # to comment.