|
@@ -0,0 +1,22 @@
|
|
|
+package com.xt.js.gkaq.frame.web;
|
|
|
+
|
|
|
+import org.junit.Test;
|
|
|
+import org.junit.runner.RunWith;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.test.context.ContextConfiguration;
|
|
|
+import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
|
|
|
+
|
|
|
+import com.xt.js.gkaq.frame.service.WfPropService;
|
|
|
+
|
|
|
+@RunWith(SpringJUnit4ClassRunner.class)
|
|
|
+@ContextConfiguration("/spring/spring*.xml")
|
|
|
+public class WorkflowMangerTest {
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ protected WfPropService wfPropService;
|
|
|
+
|
|
|
+ @Test
|
|
|
+ public void testCreate() {
|
|
|
+ wfPropService.findAll();
|
|
|
+ }
|
|
|
+}
|