I'm attempting to run a file that calls multiple files, but I'm getting some errors.
Inside the current directory called day4Measurement, I have 13 files: BuggyMeasurement.java, BuggyMeasurement01.java, BuggyMeasurement02.java, BuggyMeasurement03.java, BuggyMeasurement04.java...BuggyMeasurement10.java, MeasurementTest.java, and Measurement.java.
Measurement.java contains the main() and calls all the other files.
Here's the main():
public static void main(String [] args){
    JUnitCore tester = new JUnitCore();
    String s = "Failed to detect: ";
    int count = 0;
    String [] tests = {"toString prints reverse inches then feet", // 01
        "plus modifies this", // 02
        "minus modifies this", // 03
        "multiple modifies this", // 04
        "plus incorrect roll over", // 05
        "minus incorrect roll over", // 06
        "multiple incorrect roll over", // 07
        "plus incorrect non-roll over", // 08
        "minus incorrect non-roll over", // 09
        "multiple incorrect non-roll over", // 10
        "CORRRRECTTT!!!"
    };
    for (int i = 1; i < tests.length + 1; i++){
        testRound = i;
        System.out.println("Running: " + tests[i-1]);
        TestRunner.run(day4Measurement.MeasurementTest.class);
        Result temp = tester.run(day4Measurement.MeasurementTest.class);
        if (temp.wasSuccessful()) {
            s += tests[i-1] + "; ";
            count++;
        }
    }
    System.out.print(10-(count-1)*0.5 + " ");
    System.out.println(s);
}
In the Mac Terminal, I run
javac Measurement.java
and I get issues. Here's what I get:

Any suggestions?
for (int i=0; i<foo.length; i++) { bar(foo[i]); }. Arrays are zero-indexed and the sooner you get used to that, the easier your code will be for others to read -- and you'll more easily understand everyone else's code, too.