Testing / Junit Interview questions
How will you create a JUnit Test Class?
in JUnit3, Java classes should extend junit.framework.TestCase .
JUnit 4, any public class with a no arg public constructor can behave as a JUnit test class.
More Related questions...