Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can NUNIT, a unit-testing framework, be used for integration testing?

Can NUNIT, a unit-testing framework, be used for integration testing? It seems to be working that way for me now. Are there other automated testing frameworks out for integration testing?

like image 203
Robbie Avatar asked Nov 29 '13 12:11

Robbie


1 Answers

Yes, you can use NUnit for integration testing. For that, you may take an advantage of attributes like [Setup] and [TearDown].

Other .NET unit test frameworks which can be used for integration testing as well are:

  • MSTest
  • xUnit.NET

For more testing framework types (UI testing, database testing, web testing, acceptance testing, etc.), you may check List of Automated Testing (TDD/BDD/ATDD/SBE) Tools and Frameworks for .NET.

like image 165
Dariusz Woźniak Avatar answered Sep 22 '22 02:09

Dariusz Woźniak