What tools is used to test the java program? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

What tools is used to test the java program?

11th Feb 2016, 4:48 PM
Vivek Patil
Vivek Patil - avatar
2 Answers
+ 1
These are the basics, so I guess by "test" you mean "verify that my source code compiles" (structure is right, all dependencies are meet, no typos). Therefore you need "javac" command. In some IDEs/editors it is called "Build the project" and shows you errors and warnings afterwards. Please be aware, that the term "testing" in software development in general means "verify that my code does the things I wrote it for", which needs your code to compile first. This involves other tools/libraries/frameworks that are not part of Java itself.
12th Mar 2016, 2:48 AM
blindgaenger
0
You should be having IDE ( Integrated Development Kit) like Eclipse which understand your '.java' code. That compiles the Java code and make it run in it. Then you can see the error if it has any.
13th May 2016, 12:54 AM
[No Name]
[No Name] - avatar