RE: How to do unit test on java?Is there any automate...
Unit test is mostly done by developers because unit test requires the knowledge of internal logic of application code as testers are not aware of code so unit testing is not done by testers.
RE: How to do unit test on java?Is there any automate...
Unit testing is done by developer to make sure that his/her code does the intended work. (This is more like expecting results and making sure that the actual results match the expected ones)
Unit testing is done at the module level. The testers are no way concerned to unit testing. But now a days companies have a seperate department called Dev Testing that is more involved in these kind of unit testing.
RE: How to do unit test on java?Is there any automate...
Unit testing is done with the help of families related to X-Unit like JUnit HTTPUnit.
Junit is basically to test the java classes. If you want to test jsp or servlets or jsf we need to use either httpunit or cactus these are the tools built on top of junit which is built on top of xunit.
RE: How to do unit test on java?Is there any automate...
Unit Testing is generaly done by Developer at the end of complited first module by using the following stapes to solve the complexity of code or program.