File tree Expand file tree Collapse file tree 3 files changed +17
-8
lines changed
coverlet.integration.determisticbuild
coverlet.integration.tests Expand file tree Collapse file tree 3 files changed +17
-8
lines changed Original file line number Diff line number Diff line change 6
6
<TargetFramework >net8.0</TargetFramework >
7
7
<IsPackable >false</IsPackable >
8
8
<AssemblyName >coverletsample.integration.determisticbuild</AssemblyName >
9
- <MSBuildWarningsAsMessages >NU1604;NU1701 </MSBuildWarningsAsMessages >
9
+ <MSBuildWarningsAsMessages >NU1604</MSBuildWarningsAsMessages >
10
10
<ManagePackageVersionsCentrally >false</ManagePackageVersionsCentrally >
11
11
<RestoreSources >
12
12
https://api.nuget.org/v3/index.json;
16
16
17
17
<ItemGroup >
18
18
<PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" $(MicrosoftNETTestSdkVersion)" />
19
+ <PackageReference Include =" Microsoft.Bcl.AsyncInterfaces" Version =" 8.0.0" />
19
20
<PackageReference Include =" coverlet.msbuild" Version =" $(coverletMsbuildVersion)" >
20
21
<PrivateAssets >all</PrivateAssets >
21
22
<IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
Original file line number Diff line number Diff line change 9
9
10
10
namespace Coverlet . Integration . Tests
11
11
{
12
- public class TestSDK_17_8_0 : Collectors
12
+ public class TestSDK_17_13_0 : Collectors
13
13
{
14
- public TestSDK_17_8_0 ( )
14
+ public TestSDK_17_13_0 ( )
15
15
{
16
- TestSDKVersion = "17.8 .0" ;
16
+ TestSDKVersion = "17.13 .0" ;
17
17
}
18
18
19
19
private protected override void AssertCollectorsInjection ( ClonedTemplateProject clonedTemplateProject )
@@ -27,19 +27,19 @@ private protected override void AssertCollectorsInjection(ClonedTemplateProject
27
27
}
28
28
}
29
29
30
- public class TestSDK_17_6_0 : Collectors
30
+ public class TestSDK_17_12_0 : Collectors
31
31
{
32
- public TestSDK_17_6_0 ( )
32
+ public TestSDK_17_12_0 ( )
33
33
{
34
- TestSDKVersion = "17.6 .0" ;
34
+ TestSDKVersion = "17.12 .0" ;
35
35
}
36
36
}
37
37
38
38
public class TestSDK_Preview : Collectors
39
39
{
40
40
public TestSDK_Preview ( )
41
41
{
42
- TestSDKVersion = "17.9 .0-preview-23531 -01" ;
42
+ TestSDKVersion = "17.14 .0-preview-25107 -01" ;
43
43
}
44
44
}
45
45
Original file line number Diff line number Diff line change 13
13
14
14
namespace Coverlet . Integration . Tests
15
15
{
16
+ [ Collection ( "DeterministicBuild Collection" ) ]
16
17
public class DeterministicBuild : BaseTest , IDisposable
17
18
{
18
19
private static readonly string s_projectName = "coverlet.integration.determisticbuild" ;
@@ -383,4 +384,11 @@ public void Dispose()
383
384
File . Delete ( Path . Combine ( _testProjectPath , PropsFileName ) ) ;
384
385
}
385
386
}
387
+ [ CollectionDefinition ( "DeterministicBuild Collection" , DisableParallelization = true ) ]
388
+ public class DeterministicBuildCollection
389
+ {
390
+ // This class has no code, and is never created.
391
+ // Its purpose is to be the place to apply [CollectionDefinition] and all the
392
+ // ICollectionFixture<> interfaces.
393
+ }
386
394
}
You can’t perform that action at this time.
0 commit comments