1 package org.kuali.kpme.edo.workflow;
2
3 import org.junit.Ignore;
4 import org.junit.Test;
5 import org.kuali.kpme.edo.EdoUnitTestBase;
6 import org.kuali.rice.kew.api.WorkflowDocument;
7 import org.kuali.rice.kew.api.WorkflowDocumentFactory;
8
9 public class TenureDocumentTest extends EdoUnitTestBase {
10
11 @Ignore
12 @Test
13 public void testSuppmentalRouteModule() throws Exception {
14
15 WorkflowDocument wfd = WorkflowDocumentFactory.createDocument(testDossier.getCandidatePrincipalId(), "TenureProcessDocument");
16 wfd.route("routing supp material doc");
17 }
18
19
20 }