summaryrefslogtreecommitdiffstats
path: root/src/test
diff options
context:
space:
mode:
Diffstat (limited to 'src/test')
-rw-r--r--src/test/CppTests/Config.test.ts20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/test/CppTests/Config.test.ts b/src/test/CppTests/Config.test.ts
index d479d2d..3915f11 100644
--- a/src/test/CppTests/Config.test.ts
+++ b/src/test/CppTests/Config.test.ts
@@ -227,24 +227,4 @@ suite("C++ - Configuration Tests", () => {
assert.equal("/**\n * @note\n */", result);
});
- test("Env variable", () => {
- testSetup.cfg = new Config();
- testSetup.cfg.Generic.order = ["custom"];
- if (process.platform === "win32") {
- testSetup.cfg.Generic.customTags = ["@author ${env:USERNAME}"];
- const res = testSetup.SetLine("void foo();").GetResult();
- // USERNAME env var is different for everybody
- assert.notEqual("/**\n * @author USERNAME\n */", res);
- } else {
- testSetup.cfg.Generic.customTags = ["@author ${env:USER}"];
- const res = testSetup.SetLine("void foo();").GetResult();
- // USER env var is different for everybody
- assert.notEqual("/**\n * @author USER\n */", res);
- }
-
- testSetup.cfg.Generic.customTags = ["@author ${env:MY_VARIABLE}"];
- const result = testSetup.SetLine("void foo();").GetResult();
- assert.equal("/**\n * @author MY_VARIABLE\n */", result);
- });
-
});