@@ -15,15 +15,15 @@ public class Test_ArrayPoolExtensions
1515{
1616 [ TestMethod ]
1717 [ ExpectedException ( typeof ( ArgumentOutOfRangeException ) ) ]
18- public void Test_ArrayExtensions_InvalidSize ( )
18+ public void Test_ArrayPoolExtensions_Resize_InvalidSize ( )
1919 {
2020 int [ ] ? array = null ;
2121
2222 ArrayPool < int > . Shared . Resize ( ref array , - 1 ) ;
2323 }
2424
2525 [ TestMethod ]
26- public void Test_ArrayExtensions_NewArray ( )
26+ public void Test_ArrayPoolExtensions_Resize_NewArray ( )
2727 {
2828 int [ ] ? array = null ;
2929
@@ -34,7 +34,7 @@ public void Test_ArrayExtensions_NewArray()
3434 }
3535
3636 [ TestMethod ]
37- public void Test_ArrayExtensions_SameSize ( )
37+ public void Test_ArrayPoolExtensions_Resize_SameSize ( )
3838 {
3939 int [ ] array = ArrayPool < int > . Shared . Rent ( 10 ) ;
4040 int [ ] backup = array ;
@@ -45,7 +45,7 @@ public void Test_ArrayExtensions_SameSize()
4545 }
4646
4747 [ TestMethod ]
48- public void Test_ArrayExtensions_Expand ( )
48+ public void Test_ArrayPoolExtensions_Resize_Expand ( )
4949 {
5050 int [ ] array = ArrayPool < int > . Shared . Rent ( 16 ) ;
5151 int [ ] backup = array ;
@@ -60,7 +60,7 @@ public void Test_ArrayExtensions_Expand()
6060 }
6161
6262 [ TestMethod ]
63- public void Test_ArrayExtensions_Shrink ( )
63+ public void Test_ArrayPoolExtensions_Resize_Shrink ( )
6464 {
6565 int [ ] array = ArrayPool < int > . Shared . Rent ( 32 ) ;
6666 int [ ] backup = array ;
@@ -75,7 +75,7 @@ public void Test_ArrayExtensions_Shrink()
7575 }
7676
7777 [ TestMethod ]
78- public void Test_ArrayExtensions_Clear ( )
78+ public void Test_ArrayPoolExtensions_Resize_Clear ( )
7979 {
8080 int [ ] array = ArrayPool < int > . Shared . Rent ( 16 ) ;
8181 int [ ] backup = array ;
0 commit comments