Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
X
xm-autotest-live
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
xiamai-test
xm-autotest-live
Commits
be9b6fb5
Commit
be9b6fb5
authored
Mar 17, 2021
by
zhangying
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
review
parent
381435a9
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
src/main/java/com/live/cases/interactionLive/TestCreateBigInteractionCourse.java
+1
-1
src/main/java/com/live/cases/musicPlay/TestCreateOnlyOneClassLive.java
+1
-1
src/main/java/com/live/xmutils/GetLiveCourseData.java
+1
-1
No files found.
src/main/java/com/live/cases/interactionLive/TestCreateBigInteractionCourse.java
View file @
be9b6fb5
...
...
@@ -30,7 +30,7 @@ public class TestCreateBigInteractionCourse extends XMBaseTest {
public
void
testCreateBigInteractionCourse
()
{
JSONObject
largeInteractionClassLive
=
new
JSONObject
();
largeInteractionClassLive
.
put
(
"courseName"
,
RandomStringUtil
.
randomNumber
(
14
,
"
live_
course_"
));
largeInteractionClassLive
.
put
(
"courseName"
,
RandomStringUtil
.
randomNumber
(
14
,
"course_"
));
largeInteractionClassLive
.
put
(
"teacherId"
,
"1235115979473997826"
);
largeInteractionClassLive
.
put
(
"startTime"
,
System
.
currentTimeMillis
()
+
60
*
1000
);
largeInteractionClassLive
.
put
(
"endTime"
,
System
.
currentTimeMillis
()
+
30
*
60
*
1000
);
...
...
src/main/java/com/live/cases/musicPlay/TestCreateOnlyOneClassLive.java
View file @
be9b6fb5
...
...
@@ -35,7 +35,7 @@ public class TestCreateOnlyOneClassLive extends XMBaseTest {
public
void
testCreateOnlyOneClassLive
()
{
JSONObject
onlyOneClassLive
=
new
JSONObject
();
String
courseName
=
RandomStringUtil
.
randomNumber
(
14
,
"
live_
course_"
);
String
courseName
=
RandomStringUtil
.
randomNumber
(
14
,
"course_"
);
onlyOneClassLive
.
put
(
"courseName"
,
courseName
);
onlyOneClassLive
.
put
(
"teacherId"
,
xmAppApi
.
getLoginInfo
().
getTid
());
onlyOneClassLive
.
put
(
"startTime"
,
System
.
currentTimeMillis
()
+
60
*
1000
);
...
...
src/main/java/com/live/xmutils/GetLiveCourseData.java
View file @
be9b6fb5
...
...
@@ -198,7 +198,7 @@ public class GetLiveCourseData extends XMBaseTest {
//组装大班直播新增的数据
public
JSONObject
buildCreateLargeInteractionClassLiveParam
()
{
JSONObject
largeInteractionClassLive
=
new
JSONObject
();
largeInteractionClassLive
.
put
(
"courseName"
,
RandomStringUtil
.
randomNumber
(
14
,
"
live_
course_"
));
largeInteractionClassLive
.
put
(
"courseName"
,
RandomStringUtil
.
randomNumber
(
14
,
"course_"
));
largeInteractionClassLive
.
put
(
"teacherId"
,
"1235115979473997826"
);
largeInteractionClassLive
.
put
(
"startTime"
,
System
.
currentTimeMillis
()
+
60
*
1000
);
largeInteractionClassLive
.
put
(
"endTime"
,
System
.
currentTimeMillis
()
+
30
*
60
*
1000
);
...
...
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