diff options
author | Clément Bénier <clement.benier@iot.bzh> | 2018-07-19 10:57:02 +0200 |
---|---|---|
committer | Clément Bénier <clement.benier@iot.bzh> | 2018-08-21 11:08:35 +0200 |
commit | 4121746213075b785adf24eec17eb0bdf49199c3 (patch) | |
tree | dacdff2a407353b5c8434ab8f09d53616a208cff /.vscode | |
parent | 3c40079d8360c15f0ce52a6c11a2bc2555177463 (diff) |
functionnal test: initial commit for tests
Launch xds-server process and run test based on xds REST APIs.
list of tests
- version
- config
- folders(in progress)
Change-Id: I4312c9ab067b2d6e157f8828c2fbe467ef187733
Signed-off-by: Clément Bénier <clement.benier@iot.bzh>
Diffstat (limited to '.vscode')
-rw-r--r-- | .vscode/launch.json | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index 7c3d99c..c12c80c 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -17,6 +17,18 @@ "showLog": false }, { + "name": "XDS-Server-Test", + "type": "go", + "request": "launch", + "mode": "test", + "program": "${workspaceRoot}/test", + "env": { + "GOPATH": "${workspaceRoot}/../../../../../..:${env:GOPATH}", + }, + "args": ["-test.v", "-test.run", ".*"], + "showLog": false + }, + { "name": "XDS-Server local dev", "type": "go", "request": "launch", |