I\'m trying to run a particular JUnit test by hand on a Windows XP command line, which has an unusually high number of elements in the class path. I\'ve tried several varia
I think you are up the creek without a paddle here. The commandline has a limit for arguments to call a programm.
I have 2 sugestion you could try. First, prior to running the junit tests, you can let a script/ant_task create JARs of the various classes on the classpath. Then you can put the JARs on the classpath, which should be shorter.
Another way you could try is to create an antscript to run JUNIT, in ANT there should not be such a limit for classpath entries.