I hereby claim:
- I am mrcoder on github.
- I am deardog (https://keybase.io/deardog) on keybase.
- I have a public key ASDMBmVFd3tUqM59DS2idccsQZSMG5BSJ6XneUax4u5OjAo
To claim this, I am signing this object:
This file contains hidden or 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
| Name | URL | Features | Data privacy | Integration | Comments | |
|---|---|---|---|---|---|---|
| PlantUML | class, use case, activity, sequence, etc. | Server side rendering\nNo data stored | Confluence, Google Docs, JetBrains IDEs, VS Code, etc. | Most well-known tools of this kind | ||
| yUML | class, use case |
This file contains hidden or 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
| @import url('https://fonts.googleapis.com/css?family=Shadows+Into+Light+Two'); | |
| #diagram .message { | |
| border-bottom: blue 2px solid; | |
| border-bottom-left-radius:500px 20px; | |
| } | |
| #diagram .message.return { | |
| border-bottom: red 2px solid; | |
| border-bottom-right-radius: 500px 20px; |
This file contains hidden or 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
| var httpClient = new HttpClient | |
| { | |
| BaseAddress = new Uri("http://localhost:1080"), | |
| DefaultRequestHeaders = {{"Connection", "close"}} | |
| }; | |
| var dcrApiClient = RestService.For<IMyApiClient>(httpClient); |
This file contains hidden or 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
| mockServerClient("localhost", 1080) | |
| .mockAnyResponse({ | |
| "httpRequest": { "method": "GET", "path": "/status" }, | |
| "httpResponse": { "statusCode" : 200, "body": "{\"status\": \"OK\"}" }, | |
| "times": { | |
| "remainingTimes": 10, | |
| "unlimited": false | |
| }, | |
| } | |
| ); |
This file contains hidden or 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
| var mockServerClient = require('mockserver-client').mockServerClient; | |
| mockServerClient("localhost", 1080) | |
| .mockAnyResponse({ | |
| "httpRequest": { "method": "GET", "path": "/status" }, | |
| "httpResponse": { "statusCode" : 200, "body": "{\"status\": \"OK\"}" } } | |
| ); |
This file contains hidden or 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
| var mockserver = require('mockserver-node'); | |
| mockserver.start_mockserver({serverPort: 1080}); |
This file contains hidden or 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
| // API client interface | |
| public interface IMyApiClient | |
| { | |
| [Get("/status")] | |
| Task<string> GetStatus(); | |
| } | |
| // Test code | |
| [Fact] | |
| public async Task Get_status() | |
| { |

