├── .gitignore ├── README.md ├── img ├── buildPipeline.png ├── cdc_tests.png ├── contract_tests.png ├── dbIntegrationTest.png ├── e2etests.png ├── exploratoryTesting.png ├── httpIntegrationTest.png ├── testArchitecture.png ├── testPyramid.png ├── testService.png ├── ui_tests.png └── unitTest.png ├── install.sh ├── testing-microservices.adoc ├── testing-microservices.epub ├── testing-microservices.mobi └── testing-microservices.pdf /.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamvocke/testing-microservices-ebook/HEAD/README.md -------------------------------------------------------------------------------- /img/buildPipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamvocke/testing-microservices-ebook/HEAD/img/buildPipeline.png -------------------------------------------------------------------------------- /img/cdc_tests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamvocke/testing-microservices-ebook/HEAD/img/cdc_tests.png -------------------------------------------------------------------------------- /img/contract_tests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamvocke/testing-microservices-ebook/HEAD/img/contract_tests.png -------------------------------------------------------------------------------- /img/dbIntegrationTest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamvocke/testing-microservices-ebook/HEAD/img/dbIntegrationTest.png -------------------------------------------------------------------------------- /img/e2etests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamvocke/testing-microservices-ebook/HEAD/img/e2etests.png -------------------------------------------------------------------------------- /img/exploratoryTesting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamvocke/testing-microservices-ebook/HEAD/img/exploratoryTesting.png -------------------------------------------------------------------------------- /img/httpIntegrationTest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamvocke/testing-microservices-ebook/HEAD/img/httpIntegrationTest.png -------------------------------------------------------------------------------- /img/testArchitecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamvocke/testing-microservices-ebook/HEAD/img/testArchitecture.png -------------------------------------------------------------------------------- /img/testPyramid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamvocke/testing-microservices-ebook/HEAD/img/testPyramid.png -------------------------------------------------------------------------------- /img/testService.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamvocke/testing-microservices-ebook/HEAD/img/testService.png -------------------------------------------------------------------------------- /img/ui_tests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamvocke/testing-microservices-ebook/HEAD/img/ui_tests.png -------------------------------------------------------------------------------- /img/unitTest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamvocke/testing-microservices-ebook/HEAD/img/unitTest.png -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamvocke/testing-microservices-ebook/HEAD/install.sh -------------------------------------------------------------------------------- /testing-microservices.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamvocke/testing-microservices-ebook/HEAD/testing-microservices.adoc -------------------------------------------------------------------------------- /testing-microservices.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamvocke/testing-microservices-ebook/HEAD/testing-microservices.epub -------------------------------------------------------------------------------- /testing-microservices.mobi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamvocke/testing-microservices-ebook/HEAD/testing-microservices.mobi -------------------------------------------------------------------------------- /testing-microservices.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamvocke/testing-microservices-ebook/HEAD/testing-microservices.pdf --------------------------------------------------------------------------------