- What are the more popular unit test frameworks?
NUnit, xUnit, and MSTest.
- What is the benefit of mocking?
Substituting dependencies.
- What is the difference between unit and integration testing?
A unit test should be fast, not have any side effects, and should only test a specific operation, whereas an integration test works on a much bigger scale.
- What is TDD?
Test-driven development: a methodology that advocates starting with the unit tests.
- What are the limitations of unit tests?
They usually do not test aspects such as user interfaces or database operations.
- How can we pass data automatically to unit tests?
All of the...