Hi,
I want to know that Is unit testing is good for the application and does it take great deal with application performance while integrating them ?
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Sean StewartPosted Mar 7, 2012, 10:56 PM
http://www.codeproject.com/Articles/44276/Unit-Testing-and-Integration-Testing-in-Business-A
SenthilkumarPosted Mar 1, 2012, 9:29 PM
Usually the back end code(data access logics and business logics has to be done prior to start the UI level designs.
The .net allows to do Nunit testing to test in the back end methods. It can be experimented with the different levels. The user level experience can be done with different sample data.
The performance can be identified with load testing. The Nunit testing only for test the logics and code supports to meet the application functionality.
I believe any kind of application has to be tested for the basic functionalities and next level will be performance. Because we can't say the performance has to be tuned at the application level alone. It has to be identified the sources level or application level. For example the sql server may give bit less performance.
Hope you this will help to understand some thing about testing...