You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -8,14 +8,14 @@ This is the implementation for a [CppUTest](https://cpputest.github.io/) Test Ad
8
8
9
9
## Setup
10
10
11
-
To let this plugin know where your tests are set the ```cpputestExplorer.testExecutable``` to the executable of your tests. They are separated by semicolon and support wildcards, so you can add as many executables as you want:
11
+
To let this plugin know where your tests are set the ```cpputestTestAdapter.testExecutable``` to the executable of your tests. They are separated by semicolon and support wildcards, so you can add as many executables as you want:
They will be executed in the ```cpputestExplorer.testExecutablePath``` path.
18
+
They will be executed in the ```cpputestTestAdapter.testExecutablePath``` path.
19
19
20
20
If you want to use the debugging functions you will also need to setup a launch.json file with your debugger path and arguments etc. The adapter will take care of the rest. Hopefully.
Copy file name to clipboardExpand all lines: package.json
+9-9
Original file line number
Diff line number
Diff line change
@@ -68,27 +68,27 @@
68
68
"contributes": {
69
69
"configuration": {
70
70
"type": "object",
71
-
"title": "CppUTest Explorer configuration",
71
+
"title": "CppUTest Test Adapter",
72
72
"properties": {
73
-
"cpputestExplorer.testExecutable": {
74
-
"description": "executable that contains all tests. Can be multiple executables separated by semicolon. Wildcard is supported (e.g. myExecutable;bin/test/ut_*)",
73
+
"cpputestTestAdapter.testExecutable": {
74
+
"description": "Executable that contains all tests. Can be multiple executables separated by semicolon. Wildcard is supported (e.g. myExecutable;bin/test/ut_*)",
75
75
"default": "",
76
76
"type": "string",
77
77
"scope": "resource"
78
78
},
79
-
"cpputestExplorer.testExecutablePath": {
80
-
"description": "path where the executable should be run in",
79
+
"cpputestTestAdapter.testExecutablePath": {
80
+
"description": "Path where the executable should be run in",
81
81
"default": "",
82
82
"type": "string",
83
83
"scope": "resource"
84
84
},
85
-
"cpputestExplorer.logpanel": {
86
-
"description": "write diagnotic logs to an output panel",
85
+
"cpputestTestAdapter.logpanel": {
86
+
"description": "Write diagnostic logs to an output panel",
87
87
"type": "boolean",
88
88
"scope": "resource"
89
89
},
90
-
"cpputestExplorer.logfile": {
91
-
"description": "write diagnostic logs to the given file",
90
+
"cpputestTestAdapter.logfile": {
91
+
"description": "Write diagnostic logs to the given file",
0 commit comments