From d4642d9274ee3c73de1028d2017a034c3aff79a0 Mon Sep 17 00:00:00 2001 From: Geoffrey Merck Date: Sun, 2 Jan 2022 19:27:03 +0100 Subject: [PATCH] add google test settings --- .vscode/settings.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/.vscode/settings.json b/.vscode/settings.json index 727ce82..d43f3db 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -8,5 +8,27 @@ ], "files.associations": { "new": "cpp" + }, + "editor.tokenColorCustomizations": { + "textMateRules": [ + { + "scope": "googletest.failed", + "settings": { + "foreground": "#f00" + } + }, + { + "scope": "googletest.passed", + "settings": { + "foreground": "#0f0" + } + }, + { + "scope": "googletest.run", + "settings": { + "foreground": "#0f0" + } + } + ] } } \ No newline at end of file