Click here to Skip to main content
15,868,141 members
Please Sign up or sign in to vote.
3.00/5 (1 vote)
See more:
Hi I'm using devexpress orm with VS2010. in my project contains lot of modules and projects. i plan to implement Nunit Test. I search it to google. i can find some basic ideas. that means how to start the app for ex: 1. We can create class liber. 2. Download Nunit Gui. 3. I write [TestFixture] and Test methods. 4. Rebuild my project 5. Load the Dll to Nunit GUI. then it'll show me the result. i know this basics. i dont knw how to proceed next step. How to think my logics? where can i test, Methods , Controllers or properties . How to implement.. Can any one Explain me with example projects.

Thank u
Posted

1 solution

"Continuous Integration" is the way to go along. That is, you'll need some other computer with a Continuous Integration software which polls your source code repository, updates its local sources, starts the builds of your projects, and also the unit tests, and then sends reports to you.
Most examples focus on UnitTests proper, i.e. testing of single methods or functions of a class. Within a large existing project, you'd rather need Integration Tests. That is, after your projects were built, another machine is started and your sofwtare is deployed automatically. And then tests similar to the unit tests, but focussing on larger segments of your software are run.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900