forked from JohnnyHendriks/TestAdapter_Catch2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVSTestAdapterCatch2.runsettings
More file actions
27 lines (24 loc) · 994 Bytes
/
VSTestAdapterCatch2.runsettings
File metadata and controls
27 lines (24 loc) · 994 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?xml version="1.0" encoding="utf-8"?>
<RunSettings>
<!-- Configurations that affect the Test Framework -->
<RunConfiguration>
<MaxCpuCount>1</MaxCpuCount>
<ResultsDirectory>.\TestResults</ResultsDirectory><!-- Path relative to solution directory -->
<TestSessionTimeout>600000</TestSessionTimeout><!-- Milliseconds -->
</RunConfiguration>
<!-- Adapter Specific sections -->
<!-- Catch2 adapter -->
<Catch2Adapter>
<DebugBreak>on</DebugBreak>
<DiscoverCommandLine>--list-tests *</DiscoverCommandLine>
<DiscoverTimeout>200</DiscoverTimeout>
<FilenameFilter>^Catch_</FilenameFilter>
<IncludeHidden>true</IncludeHidden>
<Logging>Normal</Logging>
<MessageFormat>StatsOnly</MessageFormat>
<StackTraceFormat>ShortInfo</StackTraceFormat>
<TestCaseTimeout>20000</TestCaseTimeout><!-- Milliseconds -->
<WorkingDirectory></WorkingDirectory>
<WorkingDirectoryRoot>Executable</WorkingDirectoryRoot>
</Catch2Adapter>
</RunSettings>