Help with junit setup

E

eggie5

I unzipped junit src to /usr/local/junit4.4

I then added it to my class path like so:

export JUNIT_HOME=/usr/local/src/junit4.4
export CLASSPATH=$JUNIT_HOME/junit-4.4.jar

However when I run: java junit.textui.TestRunner
junit.samples.AllTests

I get this error:

Class not found "junit.samples.AllTests"

What's wrong with my setup?
 
M

Manish Pandit

I unzipped junit src to /usr/local/junit4.4

I then added it to my class path like so:

export JUNIT_HOME=/usr/local/src/junit4.4
export CLASSPATH=$JUNIT_HOME/junit-4.4.jar

However when I run: java junit.textui.TestRunner
junit.samples.AllTests

I get this error:

Class not found "junit.samples.AllTests"

What's wrong with my setup?


Where are the binaries ? Is there a junit-4.4.jar in /usr/local/src/
junit4.4 ?

-cheers,
Manish
 
M

Manish Pandit

the junit jar is in /usr/local/src/junit4.4/- Hide quoted text -

- Show quoted text -

The samples are not in junit-4.4.jar. They are in the Junit
installation folder. Try adding the installation folder to classpath
and see if it works..

-cheers,
Manish
 
E

eggie5

The samples are not in junit-4.4.jar. They are in the Junit
installation folder. Try adding the installation folder to classpath
and see if it works..

-cheers,
Manish

export JUNIT_HOME=/usr/local/src/junit4.4
export CLASSPATH=$JUNIT_HOME/junit-4.4.jar

What do I need to change?
 
E

eggie5

export JUNIT_HOME=/usr/local/src/junit4.4
export CLASSPATH=$JUNIT_HOME/junit-4.4.jar

What do I need to change?

I figured it out:

This is what I have on my (os x) .bashrc file:

export JUNIT_HOME=/Users/eggie5/desktop/downloads/junit4.4
export CLASSPATH=$CLASSPATH:$JUNIT_HOME/junit-4.4.jar:$JUNIT_HOME
 
E

eggie5

I figured it out:

This is what I have on my (os x) .bashrc file:

export JUNIT_HOME=/Users/eggie5/desktop/downloads/junit4.4
export CLASSPATH=$CLASSPATH:$JUNIT_HOME/junit-4.4.jar:$JUNIT_HOME

Can I just add $JUNIT_HOME to the classpath? Will it be picked up?
 
E

eggie5

The samples are not in junit-4.4.jar. They are in the Junit
installation folder. Try adding the installation folder to classpath
and see if it works..

-cheers,
Manish

Now I'm having trouble running my tests:

~/Development/jmms_service/bin/com/tm/Services/MMS eggie5$ java
org.junit.runner.JUnitCore ServiceTest
JUnit version 4.4
Exception in thread "main" java.lang.NoClassDefFoundError: ServiceTest
(wrong name: com/tm/Services/MMS/ServiceTest)
at java.lang.ClassLoader.defineClass1(Native Method)
at java.lang.ClassLoader.defineClass(ClassLoader.java:620)
at
java.security.SecureClassLoader.defineClass(SecureClassLoader.java:
124)
at java.net.URLClassLoader.defineClass(URLClassLoader.java:
260)
at java.net.URLClassLoader.access$100(URLClassLoader.java:56)
at java.net.URLClassLoader$1.run(URLClassLoader.java:195)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:
268)
at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:
319)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:164)
at org.junit.runner.JUnitCore.runMain(JUnitCore.java:72)
at org.junit.runner.JUnitCore.main(JUnitCore.java:44)

I have a file ServiceTest.class, but it's giving this error...
 
E

eggie5

The samples are not in junit-4.4.jar. They are in the Junit
installation folder. Try adding the installation folder to classpath
and see if it works..

-cheers,
Manish

If I run the example from the junit site, I get this:
/usr/local/src/junit4.4/junit/samples eggie5$ java
org.junit.runner.JUnitCore.runClasses(SimpleTest.class);
-bash: syntax error near unexpected token `('
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,768
Messages
2,569,574
Members
45,048
Latest member
verona

Latest Threads

Top