how u do unit testing?

Answers were Sorted based on User's Feedback



how u do unit testing?..

Answer / davis

every single entity of a software is tested individually in
unit testing before they r integrated together...

Is This Answer Correct ?    4 Yes 1 No

how u do unit testing?..

Answer / gajendra

We can use the following tool for unit testing

i.e JUnit.

It is an opensource framework .Check with junit.org

Is This Answer Correct ?    2 Yes 1 No

Post New Answer

More Core Java Interview Questions

What is the difference between panel and frame ?

7 Answers   HCL, IBM, Raim Techno Solutions,


How does abstract modifier work?

1 Answers   Wipro,


Write a program to print count of empty strings in java 8?

0 Answers  


Can we overload the main() method?

0 Answers  


What will be the output of the program? public class Test { public static void main(String args[]) { ArrayList<String> list = new ArrayList<String>(); list.add("2"); list.add("3"); list.add("4"); list.add("5"); System.out.println("size :"+list.size()); for(int i=0;i<list.size();i++) { list.remove(i); } System.out.println("size after:"+list.size()); } }

5 Answers   Rolta,






What are packages and name a few?

4 Answers  


Do extraneous variables affect validity?

0 Answers  


Are nested try statements are possible?

2 Answers  


Why singleton is not thread safe?

0 Answers  


What is the function of log?

0 Answers  


What is package private scope in java?

0 Answers  


What is the difference between a checked and an unchecked exception?

0 Answers   Cyient,


Categories