-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1.8.0 documentation and unit test (#73)
With UnitTest implementation, ContentManager to upload test, Migrate to 8.6.6
- Loading branch information
1 parent
c83efdc
commit 448715e
Showing
76 changed files
with
9,532 additions
and
7,548 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
### POST Request | ||
POST http://localhost:8381/api/unittest/run?name=ScoreAcceptanceScn&server=Camunda8Ruby&wait=true | ||
Content-Type: application/json | ||
|
||
{ | ||
} | ||
|
||
|
||
### POST Request | ||
GET http://localhost:8381/api/unittest/get?id=1732767184446 | ||
Content-Type: application/json | ||
|
||
{ | ||
} | ||
|
||
### GET LIST | ||
GET http://localhost:8381/api/unittest/list | ||
Content-Type: application/json | ||
|
||
{ | ||
} | ||
|
||
### Content Manager | ||
GET http://localhost:8381/api/content/list | ||
Content-Type: application/json | ||
|
||
{ | ||
} | ||
|
||
### Upload file | ||
POST http://localhost:8381/api/content/add | ||
Content-Type: multipart/form-data; boundary=boundary | ||
|
||
--boundary | ||
Content-Disposition: form-data; name="FileToUpload"; filename="ScoreAcceptanceScn.json" | ||
|
||
< ./resources/ScoreAcceptanceScn.json | ||
|
||
--boundary-- |
Oops, something went wrong.