My favorites | Sign in
Project Home Wiki Issues Source
Checkout   Browse   Changes    
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package org.openiaml.model.tests;

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

import org.openiaml.model.tests.codegen.AllCodegenTests;
import org.openiaml.model.tests.drools.AllDroolsTests;
import org.openiaml.model.tests.inference.AllInferenceTests;
import org.openiaml.model.tests.model.AllModelTests;
import org.openiaml.model.tests.release.AllReleaseTests;

/**
* All tests.
*
* @see AllInferenceTests
* @see AllCodegenTests
* @see AllEclipseTests
* @author jmwright
*
*/
public class AllTests {

/**
* Compile all the suites.
*
* @return
*/
public static Test suite() {
TestSuite suite = new TestSuite("All Tests");

suite.addTest(AllInferenceTests.suite());
suite.addTest(AllCodegenTests.suite());
suite.addTest(AllDroolsTests.suite());
suite.addTest(AllReleaseTests.suite());
suite.addTest(AllModelTests.suite());

return suite;
}

}

Change log

r1376 by soundasleep on Dec 15, 2009   Diff
creating a branched copy of r1288 for
aswec submission
Go to: 
Project members, sign in to write a code review

Older revisions

r1080 by soundasleep on Sep 2, 2009   Diff
 issue 109 : completing diagram test
refactoring into separate testing
plugin
adding a testing interface
EclipseInheritanceInterface to allow
...
r1006 by soundasleep on Aug 16, 2009   Diff
moving xpath functions into model
plugin
migrating dump drools xml with java
mappings into drools plugin
 issue 100 : adding test case to check
...
r1005 by soundasleep on Aug 16, 2009   Diff
moving Drools export to XML function
into drools package
All revisions of this file

File info

Size: 987 bytes, 40 lines
Powered by Google Project Hosting