Originally posted by lakshmi manepally:
Can anyone help me in writing test cases using Junit in Eclipse from scratch with clear examples.
Which of
these tutorials have you already gone through?
Originally posted by lakshmi manepally:
I have installed junit using eclipse, but I don't know how to write testcases.
Regarding how to write JUnit test cases, read through
the official documentation. Especially
this article could be a good starting point.
Originally posted by lakshmi manepally:
Could you please suggest me any sites where can I learn testing a web application with junit.
You don't test web applications with JUnit. You test
code with JUnit. For testing web applications,
you should look into tools such as
jWebUnit or
Selenium. These are tools that interact with a web application over HTTP and provide means for performing assertions against the generated HTML content, for example.