mirror of
https://github.com/marzer/tomlplusplus.git
synced 2024-11-02 11:26:26 +00:00
e260f2df79
also: - minor documentation fixes
22 lines
879 B
XML
22 lines
879 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RunSettings>
|
|
<!-- Configurations that affect the Test Framework -->
|
|
<RunConfiguration>
|
|
<MaxCpuCount>0</MaxCpuCount>
|
|
<ResultsDirectory>..\build\TestResults</ResultsDirectory><!-- Path relative to solution directory -->
|
|
<TestSessionTimeout>60000</TestSessionTimeout><!-- Milliseconds -->
|
|
</RunConfiguration>
|
|
|
|
<!-- Adapter Specific sections -->
|
|
<Catch2Adapter>
|
|
<DebugBreak>on</DebugBreak><!-- Introduced in v1.1.0 -->
|
|
<DiscoverCommandLine>--verbosity high --list-test-names-only</DiscoverCommandLine>
|
|
<DiscoverTimeout>500</DiscoverTimeout><!-- Milliseconds -->
|
|
<FilenameFilter>(?i:test)</FilenameFilter>
|
|
<Logging>debug</Logging>
|
|
<WorkingDirectoryRoot>Solution</WorkingDirectoryRoot>
|
|
<WorkingDirectory>..\tests\</WorkingDirectory>
|
|
</Catch2Adapter>
|
|
|
|
</RunSettings>
|