Is there any testing tool for c,c++ or c#, other than debugging, which works like copying-pasting an independent function to some text box, and entering parameters on other text boxes?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Maybe you think about unit testing. I recommend you Google Test and Google Mock. It is simple and powerful tool (and for free!).
http://code.google.com/p/googletest/
http://code.google.com/p/googlemock/
There are some clear examples and very easy to read documentations.
After you create unit test you have possibility to refactor your code in easy way. After yo change sth unit test will fail. There is a lot of different solution like boost tests etc.
After few weeks with UT you will be not able to life without them.
Programming is really less stressful.