I have developed a web forms application in Visual Studio 2013
What are the tests that can be performed on My project using Visual Studio
I want to test my peoject automatically i mean i dont want to put any code to test my project but i want to test it
any Suggestions
Munesh SharmaPosted Apr 13, 2014, 4:39 AM
Unit testing
Integration Test
mannual testing
Automation Test
But unit testing is done by developer.
Guest UserPosted Apr 12, 2014, 10:45 PM
There are various types of tests that you can perform. These are:
- Unit Test: tests your code
# You can use Microsoft Testing tools or NUnit as well
- Integration Test
# If you're referencing any external service, e.g., any API etc then it's good to have test coverage for this
- Automation Test
# Use selenium et al. for automation testing. You can read my blog on this at c#corner
http://www.c-sharpcorner.com/Blogs/15132/