This repository was archived by the owner on Mar 8, 2025. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk" >
22
33 <PropertyGroup >
4- <VersionPrefix >2.0 .0</VersionPrefix >
4+ <VersionPrefix >2.1 .0</VersionPrefix >
55
66 <AssemblyName >AMT.LinqExtensions</AssemblyName >
77 <AssemblyTitle >AMT LINQ Extensions</AssemblyTitle >
Original file line number Diff line number Diff line change @@ -122,11 +122,11 @@ public void verify_excp_on_empty_list()
122122
123123 // Test via the method taking ICollection
124124 Action act = ( ) => list . Random ( ) ;
125- act . ShouldThrow < ArgumentOutOfRangeException > ( ) ;
125+ act . Should ( ) . Throw < ArgumentOutOfRangeException > ( ) ;
126126
127127 // Test via the method taking IEnumerable
128128 act = ( ) => ( list as IEnumerable < string > ) . Random ( ) ;
129- act . ShouldThrow < ArgumentOutOfRangeException > ( ) ;
129+ act . Should ( ) . Throw < ArgumentOutOfRangeException > ( ) ;
130130 }
131131
132132 #endregion Negative tests
Original file line number Diff line number Diff line change 22
33 <PropertyGroup >
44 <Copyright >AltaModa Technologies, LLC</Copyright >
5- <VersionPrefix >2.0 .0</VersionPrefix >
5+ <VersionPrefix >2.1 .0</VersionPrefix >
66 <AssemblyName >Test.AMT.LinqExtensions</AssemblyName >
77 <IsPackable >false</IsPackable >
88 </PropertyGroup >
1919 </ItemGroup >
2020
2121 <ItemGroup >
22- <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 15. *" />
23- <PackageReference Include =" xunit.runner.visualstudio" Version =" 2. *" />
24- <PackageReference Include =" xunit" Version =" 2. *" />
25- <PackageReference Include =" FluentAssertions" Version =" 4. *" />
22+ <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" *" />
23+ <PackageReference Include =" xunit.runner.visualstudio" Version =" *" />
24+ <PackageReference Include =" xunit" Version =" *" />
25+ <PackageReference Include =" FluentAssertions" Version =" *" />
2626 </ItemGroup >
2727
2828</Project >
You can’t perform that action at this time.
0 commit comments