浏览代码

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

xt_yuanxd 8 年之前
父节点
当前提交
66aa358f18
共有 1 个文件被更改,包括 22 次插入0 次删除
  1. 22 0
      gkaqv2/trunk/modules/web/src/test/java/com/xt/js/gkaq/frame/web/WorkflowMangerTest.java

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