Skip to content
#

Integration testing

Integration testing is a type of software testing that focusses on larger parts of the software than unit testing, and is more process-oriented and less about just checking simple calculations between input and output data. This ensures, that multiple units work together (they integrate with each other) to walk through different steps.

Here are 1,762 public repositories matching this topic...

The simple and well known "To-Do list" API. Interesting features include: Code First approach, TDD, integration tests, DI, defensive programming and the use of an in memory database. You can easily test this API by using this: https://github.com/aloatias/TodoList.Front

  • Updated Oct 1, 2020
  • C#