Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Open Subsurface Data Universe Software
Platform
Data Flow
Data Enrichment
wks
Commits
01e6863b
Commit
01e6863b
authored
Mar 30, 2021
by
NSarda
Browse files
Changes in step defs for new test cases
parent
fc7d8548
Pipeline
#34077
failed with stages
in 35 minutes and 51 seconds
Changes
1
Pipelines
4
Hide whitespace changes
Inline
Side-by-side
testing/wks-test-core/src/test/java/org/opengroup/osdu/wks/stepdefs/IntegrationTestStepDefs.java
View file @
01e6863b
...
...
@@ -197,8 +197,6 @@ public class IntegrationTestStepDefs implements En {
And
(
"Wks record should be created in the intended kind"
,
()
->
{
String
expectedKind
=
AutomationConstants
.
OS_TARGET_SCHEMA_KIND_TENANT
;
String
actualKind
=
new
JsonPath
(
this
.
context
.
getHttpResponse
().
getBody
()).
get
(
"kind"
).
toString
();
System
.
out
.
println
(
"expectedKind : "
+
expectedKind
);
System
.
out
.
println
(
"actualKind : "
+
actualKind
);
assertEquals
(
expectedKind
,
actualKind
);
});
...
...
@@ -461,7 +459,6 @@ public class IntegrationTestStepDefs implements En {
});
Given
(
"I hit wks service with {string} whose raw record contains relationship to above records"
,
(
String
inputPayload
)
->
{
persistRecordWithRelationshipBlock
(
inputPayload
);
...
...
Write
Preview
Supports
Markdown
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