Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
Other Resources:
How Do I Run JUnit Tests from Command Window
How Do I Run JUnit Tests from Command Window?
✍: FYICenter.com QA Team
To run JUnit tests from a command window, you need to check the following list:
1. Make sure that JDK is installed and the "java" command program is accessible through the PATH setting. Type "java -version" at the command prompt, you should see the JVM reports you back the version string.
2. Make sure that the CLASSPATH is defined as shown in the previous question.
3. Invoke the JUnit runner by entering the following command:
java org.junit.runner.JUnitCore <test class name>
2008-01-17, 6585👍, 0💬
Popular Posts:
Can you explain in brief how can we implement threading ? Private Sub Form1_Load(ByVal sender As Sys...
Does .NET support UNICODE and how do you know it supports? Yes .NET definitely supports UNICODE. Try...
Where Do You Download JUnit? Where do I download JUnit? I don't think anyone will ask this question ...
What will be printed as the result of the operation below: main() { char s1[]="Cisco"; char s2[]="sy...
How does one iterate through items and records in a specified block? One can use NEXT_FIELD to itera...