ソースを参照

git-svn-id: https://192.168.57.71/svn/jsgkj@1028 931142cf-59ea-a443-aa0e-51397b428577

xt_yuanxd 8 年 前
コミット
66aa358f18

+ 22 - 0
gkaqv2/trunk/modules/web/src/test/java/com/xt/js/gkaq/frame/web/WorkflowMangerTest.java

@@ -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();
+    }
+}