Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
H
holmes
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
QA
holmes
Commits
aa19948a
Commit
aa19948a
authored
Jun 16, 2021
by
黎博
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改获取场景用例列表接口
parent
c49f9179
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
SceneTestcaseController.java
...cn/qg/holmes/controller/auto/SceneTestcaseController.java
+8
-1
No files found.
src/main/java/cn/qg/holmes/controller/auto/SceneTestcaseController.java
View file @
aa19948a
...
@@ -13,7 +13,9 @@ import lombok.extern.slf4j.Slf4j;
...
@@ -13,7 +13,9 @@ import lombok.extern.slf4j.Slf4j;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.web.bind.annotation.*
;
import
org.springframework.web.bind.annotation.*
;
import
java.util.HashMap
;
import
java.util.List
;
import
java.util.List
;
import
java.util.Map
;
@Slf4j
@Slf4j
@CrossOrigin
@CrossOrigin
...
@@ -44,7 +46,12 @@ public class SceneTestcaseController {
...
@@ -44,7 +46,12 @@ public class SceneTestcaseController {
return
JsonResult
.
buildErrorStateResult
(
"请传入场景id"
,
false
);
return
JsonResult
.
buildErrorStateResult
(
"请传入场景id"
,
false
);
}
}
List
<
SceneTestcase
>
sceneTestcaseList
=
sceneTestcaseService
.
getSceneTestcaseListBySceneId
(
sceneId
);
List
<
SceneTestcase
>
sceneTestcaseList
=
sceneTestcaseService
.
getSceneTestcaseListBySceneId
(
sceneId
);
return
JsonResult
.
buildSuccessResult
(
sceneTestcaseList
);
Scene
scene
=
sceneService
.
getById
(
sceneId
);
Map
<
String
,
Object
>
map
=
new
HashMap
<>();
map
.
put
(
"sceneId"
,
scene
.
getId
());
map
.
put
(
"globalParameters"
,
scene
.
getGlobalParameters
());
map
.
put
(
"sceneTestcaseList"
,
sceneTestcaseList
);
return
JsonResult
.
buildSuccessResult
(
map
);
}
}
/**
/**
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment