Test - Integration

Testing Infrastructure

Test - Integration

About

integration test are test that runs between different services of a system.

Example

Website

If you are building a website, the test script will

  • start your website
  • and use a headless browser
  • to test automatically all the functionalities

Rest API

If you are building a Rest API, the test script will

  • start the web server
  • use a web client
  • and run the unit tests

Data Pipeline

If you are building a data pipeline, the test will

  • start a database via docker
  • run a test pipeline
  • to test automatically all the functionalities





Discover More
Testing Infrastructure
Test - Mock

Mocking is just replacing or wrapping a function by another function at runtime called a mocking function. Example: This function overrule the actual implementation of a function during a test. It permits...
Testing Infrastructure
Test - With Container

Starting a container is an easy way to start a service and wrap up integration test Gitlab ci - Services ...



Share this page:
Follow us:
Task Runner