@@ -56,31 +56,31 @@ public void Null_values_are_omitted_from_the_final_result()
5656 }
5757
5858 [ Fact ( Skip = "Remove this Skip property to run this test" ) ]
59- public void Consecutive_null_values_at_the_front_of_the_list_are_omitted_from_the_final_result ( )
59+ public void Consecutive_null_values_at_the_front_of_the_array_are_omitted_from_the_final_result ( )
6060 {
6161 object ? [ ] array = new object ? [ ] { null , null , 3 } ;
6262 object ? [ ] expected = [ 3 ] ;
6363 Assert . Equal ( expected , FlattenArray . Flatten ( array ) ) ;
6464 }
6565
6666 [ Fact ( Skip = "Remove this Skip property to run this test" ) ]
67- public void Consecutive_null_values_in_the_middle_of_the_list_are_omitted_from_the_final_result ( )
67+ public void Consecutive_null_values_in_the_middle_of_the_array_are_omitted_from_the_final_result ( )
6868 {
6969 object ? [ ] array = new object ? [ ] { 1 , null , null , 4 } ;
7070 object ? [ ] expected = [ 1 , 4 ] ;
7171 Assert . Equal ( expected , FlattenArray . Flatten ( array ) ) ;
7272 }
7373
7474 [ Fact ( Skip = "Remove this Skip property to run this test" ) ]
75- public void Six_level_nest_list_with_null_values ( )
75+ public void Six_level_nested_array_with_null_values ( )
7676 {
7777 object ? [ ] array = new object ? [ ] { 0 , 2 , new object ? [ ] { new object ? [ ] { 2 , 3 } , 8 , new object ? [ ] { new object ? [ ] { 100 } } , null , new object ? [ ] { new object ? [ ] { null } } } , - 2 } ;
7878 object ? [ ] expected = [ 0 , 2 , 2 , 3 , 8 , 100 , - 2 ] ;
7979 Assert . Equal ( expected , FlattenArray . Flatten ( array ) ) ;
8080 }
8181
8282 [ Fact ( Skip = "Remove this Skip property to run this test" ) ]
83- public void All_values_in_nested_list_are_null ( )
83+ public void All_values_in_nested_array_are_null ( )
8484 {
8585 object ? [ ] array = new object ? [ ] { null , new object ? [ ] { new object ? [ ] { new object ? [ ] { null } } } , null , null , new object ? [ ] { new object ? [ ] { null , null } , null } , null } ;
8686 object ? [ ] expected = [ ] ;
0 commit comments