I have a file 'Junit.class' and I run it from command line like normal (java Junit). In eclipse I run it and the imported statements work, getting them from the .jar files I have. when I run it from the command line it wont run. Eclipse made the Junit.class file and I do
:~java Junit
Errors come from it not being able to find the imported classes.Do I need to include the jar file and if so how, for example is there a way to do ?
:~ java (jar_File_1) (Jar_file_2) Junit.class
Basically I just need the jar files for the imported classes in my Junit class.