On Jan 22, 6:12 am, Senthil kumar <[email protected]> wrote: > Hi, > > Can anyone point me out which is the best node module to write the > functional test cases which should also generates xml report like nodeunit. > nodeunit is well suited for unit test cases. I am using soda for functional > testcases i don't know whether it generates xml report. Can someone point > me out which module is the correct one? > > Thanks > Senthil
The difference between function and unit testing is that in unit testing you mock out anything other than the unit being tested. In functional testing you do not mock anything out, and also your testing focus is more on end-user stuff a.k.a. user-acceptance In other words, there isn't exactly a difference in test harness or reporting requirements needed. There might not be a need to use a different harness for functional testing than for unit testing, and it's quite possible to use the JUnit or TAP or whatever report format for functional test reports. + David Herron author: Node Web Development http://nodejs.davidherron.com -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nodejs?hl=en?hl=en
