Bug #4125
closedReportTest does not compile
0%
Description
I get the following when I try to run the reporting module:
[compile] Compiling 60 source files to /Users/sean/Development/build_run_manager/reporting/target/classes
[compile] /Users/sean/Development/build_run_manager/reporting/src/org/kepler/reporting/rio/test/ReportTest.java:53: cannot find symbol
[compile] symbol : class StaticReportItemHR
[compile] location: package org.kepler.reporting.rio
[compile] import org.kepler.reporting.rio.StaticReportItemHR;
[compile] ^
[compile] /Users/sean/Development/build_run_manager/reporting/src/org/kepler/reporting/rio/test/ReportTest.java:54: cannot find symbol
[compile] symbol : class StaticReportItemText
[compile] location: package org.kepler.reporting.rio
[compile] import org.kepler.reporting.rio.StaticReportItemText;
[compile] ^
[compile] /Users/sean/Development/build_run_manager/reporting/src/org/kepler/reporting/rio/test/ReportTest.java:132: cannot find symbol
[compile] symbol : class StaticReportItemHR
[compile] location: class org.kepler.reporting.rio.test.ReportTest
[compile] Item hrItem = new StaticReportItemHR();
[compile] ^
[compile] /Users/sean/Development/build_run_manager/reporting/src/org/kepler/reporting/rio/test/ReportTest.java:136: cannot find symbol
[compile] symbol : class StaticReportItemText
[compile] location: class org.kepler.reporting.rio.test.ReportTest
[compile] Item textItem = new StaticReportItemText();
[compile] ^
[compile] Note: /Users/sean/Development/build_run_manager/reporting/src/org/kepler/reporting/rio/test/ReportTest.java uses or overrides a deprecated API.
[compile] Note: Recompile with -Xlint:deprecation for details.
[compile] Note: Some input files use unchecked or unsafe operations.
[compile] Note: Recompile with -Xlint:unchecked for details.
[compile] 4 errors
My guess is that the subtypes of StaticReportItem are not checked into SVN.