From: Tony F. <ton...@ya...> - 2003-02-14 21:50:30
|
There are only 2 errors that occur when trying to compile all the framework code (including the test classes). ---------------------------------------------------------------------- In com.interface21.web.util.ServletRequestParameterPropertyValuesTestSuite.java line 7 reads "import junit.ui.TestRunner". There is no such class, so you get a compilation error. (Actually Rod, when you refer to the TestRunner later in the java file you fully qualify it.) So get rid of line 7 and compilation is fine. ---------------------------------------------------------------------- In com.interface21.jta.TxInterceptorTestSuite.java get these errors: "TxInterceptorTestSuite.java": Error #: 300 : class SingleConnectionTransactionInterceptor not found in class com.interface21.jta.TxInterceptorTestSuite at line 36, column 12 "TxInterceptorTestSuite.java": Error #: 300 : class SingleConnectionTransactionInterceptor not found in class com.interface21.jta.TxInterceptorTestSuite at line 73, column 12 ---------------------------------------------------------------------- |