URL
https://opencores.org/ocsvn/scarts/scarts/trunk
Subversion Repositories scarts
[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [libjava/] [classpath/] [doc/] [testing.framework.text] - Rev 14
Compare with Previous | Blame | View Log
Guile Testing Framework for GNU ClasspathWritten by Paul Fisher (rao@gnu.org)GNU Classpath tests are written in Java. Guile is responsible forexecuting the tests and organizing the results. Guile and Javacommunicate through JNI. If JNI is unavailable, see the section onmodifying the framework to allow for an alternate means ofcommunication. [This has not been written. -PF]All tests must implement gnu.test.Test. gnu.test.Test contains twomethods:1. String getName()2. Result test()When getName() is called, your test should return the name of thetest. When test() is called, your test should be performed. Uponcompletion of the test (either through success or failure), a Resultobject is returned. test() may throw runtime exceptions and errors --if this happens, an implicit error result is returned.There are seven predefined result types, including the POSIX 1003.3result codes. All result objects may optionally be constructed with asingle String argument specifying additional information about theresult.gnu.test.Pass : Test passed and was excepted to pass.gnu.test.XPass : Test passed but was expected to fail.gnu.test.Fail : Test failed but was expected to pass.gnu.test.XFail : Test failed and was expected to fail.gnu.test.Unresolved : Test produced indeterminate results.gnu.test.Untested : Test was not run -- a placeholder.gnu.test.Unsupported : Test does not have the required support to run.(Error is also a valid result type, but only in Guile/JNI code.)System.out and System.err are used for directing additionalinformation about the running test. System.out should be used to sendstatus messages when tests are expected to take large amounts of time.System.err should be used to send messages which are logged to theverbose log.Example test:import gnu.test.*;public class StringCharAtZeroTest implements Test{public getName() {return "java.lang.String.charAt(0)";}public Result test() {char ch = "foobar".charAt(0);if (ch == 'f')return new Pass();elsereturn new Fail("zero index of \"foobar\" is '" + ch + "'");}}It's often desirable to group multiple tests together into one file.In this case, inner classes should be used. There's also the addedbenefit that tests can easily share data through static variables inthe parent class.For example:import gnu.test.*;public class TestContainer {public static class test1 implements Test {String getName() {return "test1";}Result test() {// test1 ...}}public static class test2 implements Test {String getName() {return "test2";}Result test() {// test2 ...}}}The testsuite contains a file known as "tests.to.run" which contains anewline delimited listing of all tests to be executed. Just add thename of the new test to the file and it'll be included in future runsof the testsuite.Running the testsuite:guile-jvm -s test.scm tests.to.run(It would be more natural for the testsuite to read from standard inif a file was not specified, but read-line in Guile 1.3a is broken.)Classes are located via the environmental variable CLASSPATH.Results are sent to two log files -- one summary (classpath.sum) andone verbose (classpath.log).
