├── .gitignore ├── LICENSE ├── README.md ├── api-testing-course ├── README.md ├── behat.dist.yml ├── composer.json ├── composer.lock ├── composer.phar └── features │ ├── 1.4-smoke-test.feature │ ├── 2.1-issue-list.feature │ ├── 2.2-issue-list-with-variables.feature │ ├── 3.2-my-repositories.feature │ ├── 3.3-star-repository.feature │ ├── 3.4-unstar-repository.feature │ ├── 4.1-create-a-repo.feature │ ├── 4.2-create-a-repo-cleanup.feature │ ├── 4.6-graphql.feature │ ├── 4.7-graphql-star-repository.feature │ └── bootstrap │ └── FeatureContext.php ├── api-testing-workspace ├── README.md ├── behat.dist.yml ├── composer.json └── composer.lock └── php └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caseysoftware/API-Testing-and-Validation/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caseysoftware/API-Testing-and-Validation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caseysoftware/API-Testing-and-Validation/HEAD/README.md -------------------------------------------------------------------------------- /api-testing-course/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caseysoftware/API-Testing-and-Validation/HEAD/api-testing-course/README.md -------------------------------------------------------------------------------- /api-testing-course/behat.dist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caseysoftware/API-Testing-and-Validation/HEAD/api-testing-course/behat.dist.yml -------------------------------------------------------------------------------- /api-testing-course/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caseysoftware/API-Testing-and-Validation/HEAD/api-testing-course/composer.json -------------------------------------------------------------------------------- /api-testing-course/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caseysoftware/API-Testing-and-Validation/HEAD/api-testing-course/composer.lock -------------------------------------------------------------------------------- /api-testing-course/composer.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caseysoftware/API-Testing-and-Validation/HEAD/api-testing-course/composer.phar -------------------------------------------------------------------------------- /api-testing-course/features/1.4-smoke-test.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caseysoftware/API-Testing-and-Validation/HEAD/api-testing-course/features/1.4-smoke-test.feature -------------------------------------------------------------------------------- /api-testing-course/features/2.1-issue-list.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caseysoftware/API-Testing-and-Validation/HEAD/api-testing-course/features/2.1-issue-list.feature -------------------------------------------------------------------------------- /api-testing-course/features/2.2-issue-list-with-variables.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caseysoftware/API-Testing-and-Validation/HEAD/api-testing-course/features/2.2-issue-list-with-variables.feature -------------------------------------------------------------------------------- /api-testing-course/features/3.2-my-repositories.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caseysoftware/API-Testing-and-Validation/HEAD/api-testing-course/features/3.2-my-repositories.feature -------------------------------------------------------------------------------- /api-testing-course/features/3.3-star-repository.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caseysoftware/API-Testing-and-Validation/HEAD/api-testing-course/features/3.3-star-repository.feature -------------------------------------------------------------------------------- /api-testing-course/features/3.4-unstar-repository.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caseysoftware/API-Testing-and-Validation/HEAD/api-testing-course/features/3.4-unstar-repository.feature -------------------------------------------------------------------------------- /api-testing-course/features/4.1-create-a-repo.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caseysoftware/API-Testing-and-Validation/HEAD/api-testing-course/features/4.1-create-a-repo.feature -------------------------------------------------------------------------------- /api-testing-course/features/4.2-create-a-repo-cleanup.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caseysoftware/API-Testing-and-Validation/HEAD/api-testing-course/features/4.2-create-a-repo-cleanup.feature -------------------------------------------------------------------------------- /api-testing-course/features/4.6-graphql.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caseysoftware/API-Testing-and-Validation/HEAD/api-testing-course/features/4.6-graphql.feature -------------------------------------------------------------------------------- /api-testing-course/features/4.7-graphql-star-repository.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caseysoftware/API-Testing-and-Validation/HEAD/api-testing-course/features/4.7-graphql-star-repository.feature -------------------------------------------------------------------------------- /api-testing-course/features/bootstrap/FeatureContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caseysoftware/API-Testing-and-Validation/HEAD/api-testing-course/features/bootstrap/FeatureContext.php -------------------------------------------------------------------------------- /api-testing-workspace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caseysoftware/API-Testing-and-Validation/HEAD/api-testing-workspace/README.md -------------------------------------------------------------------------------- /api-testing-workspace/behat.dist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caseysoftware/API-Testing-and-Validation/HEAD/api-testing-workspace/behat.dist.yml -------------------------------------------------------------------------------- /api-testing-workspace/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caseysoftware/API-Testing-and-Validation/HEAD/api-testing-workspace/composer.json -------------------------------------------------------------------------------- /api-testing-workspace/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caseysoftware/API-Testing-and-Validation/HEAD/api-testing-workspace/composer.lock -------------------------------------------------------------------------------- /php/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caseysoftware/API-Testing-and-Validation/HEAD/php/README.md --------------------------------------------------------------------------------