Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
academy
tutorials
effective-testing-javadevs
test-rest-api
Commits
a7fb72ae
Commit
a7fb72ae
authored
5 years ago
by
Esma Meral
Browse files
Options
Download
Email Patches
Plain Diff
bugfix
parent
4df62ded
master
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+3
-1
README.md
with
3 additions
and
1 deletion
+3
-1
README.md
+
3
-
1
View file @
a7fb72ae
...
...
@@ -124,7 +124,7 @@ public void postProduct() throws Exception {
assertNotNull
(
product
);
assertEquals
(
product
.
getName
(),
"Kids Blanket"
);
assertNotNull
(
product
.
getId
());
}
}
```
To resolve compile errors add following static imports:
...
...
@@ -160,3 +160,5 @@ To resolve compile error add following static import:
```
java
import
static
org
.
springframework
.
test
.
web
.
servlet
.
request
.
MockMvcRequestBuilders
.
delete
;
```
*
Run your JUnit test class
This diff is collapsed.
Click to expand it.
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
Menu
Projects
Groups
Snippets
Help