can't run Beginning Algorithm examples
I need help with compiling on Vista because it did not work.
I have all the files in
C:\Users\Owner\javaproj\BeginningAlgorithms
junit3.8.1
main
readme.html
test
CLASSPATH=C:\User\Owner\javaproj\BeginningAlgorith ms\junit3.8.1
When I compile in BeginningAlgorithms directory
javac -sourcepath main main/com/wrox/algorithms/lists/*.java
I get these kind of errors;
test\com\wrox\algorithms\lists\AbstractListTestCas e.java:325: cannot find symbol
symbol : method fail()
location: class com.wrox.algorithms.lists.AbstractListTestCase
fail();
^
test\com\wrox\algorithms\lists\AbstractListTestCas e.java:336: cannot find symbol
symbol : method assertEquals(int,int)
location: class com.wrox.algorithms.lists.AbstractListTestCase
assertEquals(0, _list.indexOf(VALUE_A));
please Help!!!
|