File: RuntimeSuite.java

package info (click to toggle)
libjibx1.2-java 1.2.6-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 26,260 kB
  • sloc: java: 75,013; xml: 14,068; makefile: 17
file content (17 lines) | stat: -rw-r--r-- 503 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package org.jibx.runtime;

import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;

public class RuntimeSuite extends TestCase
{
    public static Test suite() {
        TestSuite suite = new TestSuite();
        suite.addTestSuite(UtilityTest.class);
        suite.addTestSuite(WhitespaceConversionsTest.class);
        suite.addTestSuite(JodaConvertTest.class);
        suite.addTestSuite(JiBXConstrainedParseExceptionTest.class);
        return suite;
    }
}