-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathcoverage.settings.xml
More file actions
29 lines (29 loc) · 1.07 KB
/
coverage.settings.xml
File metadata and controls
29 lines (29 loc) · 1.07 KB
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
28
29
<?xml version="1.0" encoding="utf-8"?>
<Configuration>
<CodeCoverage>
<ModulePaths>
<Include>
<!-- Only the product DLL. Reactor.AppTests.Host.dll is the test harness;
measuring how much of the harness its own fixtures exercise is
circular and inflates the number without saying anything about
product-code quality. -->
<ModulePath>.*[/\\]Reactor\.dll$</ModulePath>
</Include>
</ModulePaths>
<Sources>
<Exclude>
<!-- WinRT/AOT source-generator output and other build-time generated code
live under obj/. These files are not hand-written and provide no
meaningful signal. -->
<Source>.*[/\\]obj[/\\].*</Source>
<Source>.*\.g\.cs$</Source>
</Exclude>
</Sources>
<Attributes>
<Exclude>
<Attribute>^System\.CodeDom\.Compiler\.GeneratedCodeAttribute$</Attribute>
<Attribute>^System\.Diagnostics\.CodeAnalysis\.ExcludeFromCodeCoverageAttribute$</Attribute>
</Exclude>
</Attributes>
</CodeCoverage>
</Configuration>