I’ve posted several examples here of using Azure Cognitive Services for data science applications. You can upload an an image or video to the service and extract information about faces and emotions,…
Performing Integration Tests on REST Services
Basics of Testing and Types
There are three basic layers of testing:
* Unit test — making sure each function/unit of code works as expected
* Functional test — making sure units interact with each other as expected
* Integration test — making sure our app integrate with other app/api/services as expected
Mock server helps with all layers of tests, although it is particularly useful for functional and integration. https://goo.gl/ZNA51j

