|
@@ -0,0 +1,24 @@
|
|
|
|
|
+package com.zksy.web.controller.basicData;
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+import com.zksy.common.core.domain.AjaxResult;
|
|
|
|
|
+import org.junit.Test;
|
|
|
|
|
+import org.junit.runner.RunWith;
|
|
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
|
+import org.springframework.boot.test.context.SpringBootTest;
|
|
|
|
|
+import org.springframework.test.context.junit4.SpringRunner;
|
|
|
|
|
+
|
|
|
|
|
+@SpringBootTest
|
|
|
|
|
+@RunWith(SpringRunner.class)
|
|
|
|
|
+public class CrmHighTechZoneEnterprisesControllerTest{
|
|
|
|
|
+
|
|
|
|
|
+ @Autowired
|
|
|
|
|
+ private CrmHighTechZoneEnterprisesController crmHighTechZoneEnterprisesController;
|
|
|
|
|
+
|
|
|
|
|
+ @Test
|
|
|
|
|
+ public void test(){
|
|
|
|
|
+ AjaxResult result = crmHighTechZoneEnterprisesController.ratedLevelDReason("91431228MA4R9DE7XL");
|
|
|
|
|
+ System.out.println(result);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+}
|