1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.kew.xml.export;
17
18 import org.junit.Test;
19 import org.kuali.rice.kew.test.KEWTestCase;
20 import org.kuali.rice.test.BaselineTestCase;
21
22 @BaselineTestCase.BaselineMode(BaselineTestCase.Mode.NONE)
23 public abstract class XmlExporterTestCase extends KEWTestCase {
24
25 @Test public void testExportActionConfig() throws Exception {
26 loadXmlFile("org/kuali/rice/kew/actions/ActionsConfig.xml");
27 assertExport();
28 }
29
30 @Test public void testExportEngineConfig() throws Exception {
31 loadXmlFile("org/kuali/rice/kew/engine/EngineConfig.xml");
32 assertExport();
33 }
34
35 protected abstract void assertExport() throws Exception;
36
37 }