> 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
eggie5 - 09 Oct 2007 05:23 GMT
> > the junit jar is in /usr/local/src/junit4.4/- Hide quoted text -
>
[quoted text clipped - 6 lines]
> -cheers,
> Manish
export JUNIT_HOME=/usr/local/src/junit4.4
export CLASSPATH=$JUNIT_HOME/junit-4.4.jar
What do I need to change?
eggie5 - 09 Oct 2007 05:53 GMT
> > > the junit jar is in /usr/local/src/junit4.4/- Hide quoted text -
>
[quoted text clipped - 11 lines]
>
> 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
eggie5 - 09 Oct 2007 05:53 GMT
> > > > the junit jar is in /usr/local/src/junit4.4/- Hide quoted text -
>
[quoted text clipped - 18 lines]
> 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?
eggie5 - 09 Oct 2007 07:02 GMT
> > the junit jar is in /usr/local/src/junit4.4/- Hide quoted text -
>
[quoted text clipped - 6 lines]
> -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...
eggie5 - 09 Oct 2007 07:07 GMT
> > the junit jar is in /usr/local/src/junit4.4/- Hide quoted text -
>
[quoted text clipped - 6 lines]
> -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 `('