@@ -38,3 +38,38 @@ Scenario: Get coverage of a .net core 3.1 application using oldstyle, with debug
38
38
When I execute OpenCover against the target application using the switch '-oldstyle'
39
39
Then I should have a results.xml file with a coverage greater than or equal to '100' %
40
40
41
+ Scenario : Get coverage of a .net core 5.0 application
42
+ Given I can find the OpenCover application
43
+ And I can find the target .net core '5.0' application 'OpenCover.Simple.Target.Core.5.0'
44
+ When I execute OpenCover against the target application using the switch ''
45
+ Then I should have a results.xml file with a coverage greater than or equal to '100' %
46
+
47
+ Scenario : Get coverage of a .net core 5.0 application using oldstyle
48
+ Given I can find the OpenCover application
49
+ And I can find the target .net core '5.0' application 'OpenCover.Simple.Target.Core.5.0'
50
+ When I execute OpenCover against the target application using the switch '-oldstyle'
51
+ Then I should have a results.xml file with a coverage greater than or equal to '100' %
52
+
53
+ Scenario : Get coverage of a .net core 5.0 application, with debugType = portable
54
+ Given I can find the OpenCover application
55
+ And I can find the target .net core '5.0' application 'OpenCover.Simple.Target.Core.5.0.Portable'
56
+ When I execute OpenCover against the target application using the switch ''
57
+ Then I should have a results.xml file with a coverage greater than or equal to '100' %
58
+
59
+ Scenario : Get coverage of a .net core 5.0 application using oldstyle, with debugType = portable
60
+ Given I can find the OpenCover application
61
+ And I can find the target .net core '5.0' application 'OpenCover.Simple.Target.Core.5.0.Portable'
62
+ When I execute OpenCover against the target application using the switch '-oldstyle'
63
+ Then I should have a results.xml file with a coverage greater than or equal to '100' %
64
+
65
+ Scenario : Get coverage of a .net core 5.0 application, with debugType = embedded
66
+ Given I can find the OpenCover application
67
+ And I can find the target .net core '5.0' application 'OpenCover.Simple.Target.Core.5.0.Embedded'
68
+ When I execute OpenCover against the target application using the switch ''
69
+ Then I should have a results.xml file with a coverage greater than or equal to '100' %
70
+
71
+ Scenario : Get coverage of a .net core 5.0 application using oldstyle, with debugType = embedded
72
+ Given I can find the OpenCover application
73
+ And I can find the target .net core '5.0' application 'OpenCover.Simple.Target.Core.5.0.Embedded'
74
+ When I execute OpenCover against the target application using the switch '-oldstyle'
75
+ Then I should have a results.xml file with a coverage greater than or equal to '100' %
0 commit comments