diff options
Diffstat (limited to 'unit_tests/Catch2.runsettings')
-rw-r--r-- | unit_tests/Catch2.runsettings | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/unit_tests/Catch2.runsettings b/unit_tests/Catch2.runsettings deleted file mode 100644 index fcf7f5a..0000000 --- a/unit_tests/Catch2.runsettings +++ /dev/null | |||
@@ -1,29 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | ||
2 | <!-- https://github.com/JohnnyHendriks/TestAdapter_Catch2/blob/main/Docs/Settings.md --> | ||
3 | <RunSettings> | ||
4 | <Catch2Adapter> | ||
5 | <DiscoverCommandLine>--list-tests --verbosity high</DiscoverCommandLine> | ||
6 | <DiscoverTimeout>300000</DiscoverTimeout> | ||
7 | |||
8 | <!-- Executable Filename | ||
9 | Discover filenames with ... (must not include the .exe extension) | ||
10 | Regex breakdown: ^foo(_(.+))+(p|r|d)(_?(.+))x*$ | ||
11 | - ^foo : find file that starts with foo | ||
12 | - (_(.+))+ : follows with a number of elements starting with _ (_foo_bar_dll) | ||
13 | - (r|d|p) : contains a word with one of these letters : r (release), d (debug), p (profile). | ||
14 | - (_?(.+)): optionally follow with underscores. | ||
15 | - x*$ end of line | ||
16 | --> | ||
17 | <FilenameFilter>UnitTests</FilenameFilter> | ||
18 | |||
19 | <!-- Enable breaking on failure --> | ||
20 | <DebugBreak>on</DebugBreak> | ||
21 | |||
22 | <!-- Combine: A single test executable is started to run multiple test cases. (Single: instance per test case) --> | ||
23 | <ExecutionMode>Combine</ExecutionMode> | ||
24 | |||
25 | <!-- Working directory --> | ||
26 | <WorkingDirectoryRoot>Solution</WorkingDirectoryRoot> | ||
27 | <WorkingDirectory>.</WorkingDirectory> | ||
28 | </Catch2Adapter> | ||
29 | </RunSettings> \ No newline at end of file | ||