@@ -3,7 +3,7 @@ public class RelativeDistanceTests
3
3
[ Fact ]
4
4
public void Direct_parent_child_relation ( )
5
5
{
6
- var familyTree = new Dictionary < string , List < string > >
6
+ var familyTree = new Dictionary < string , string [ ] >
7
7
{
8
8
{ "Aditi" , [ "Bao" ] } ,
9
9
{ "Bao" , [ "Carlos" ] } ,
@@ -16,7 +16,7 @@ public void Direct_parent_child_relation()
16
16
[ Fact ( Skip = "Remove this Skip property to run this test" ) ]
17
17
public void Sibling_relationship ( )
18
18
{
19
- var familyTree = new Dictionary < string , List < string > >
19
+ var familyTree = new Dictionary < string , string [ ] >
20
20
{
21
21
{ "Dalia" , [ "Olga" , "Yassin" ] } ,
22
22
} ;
@@ -27,7 +27,7 @@ public void Sibling_relationship()
27
27
[ Fact ( Skip = "Remove this Skip property to run this test" ) ]
28
28
public void Two_degrees_of_separation_grandchild ( )
29
29
{
30
- var familyTree = new Dictionary < string , List < string > >
30
+ var familyTree = new Dictionary < string , string [ ] >
31
31
{
32
32
{ "Khadija" , [ "Mateo" ] } ,
33
33
{ "Mateo" , [ "Rami" ] }
@@ -39,7 +39,7 @@ public void Two_degrees_of_separation_grandchild()
39
39
[ Fact ( Skip = "Remove this Skip property to run this test" ) ]
40
40
public void Unrelated_individuals ( )
41
41
{
42
- var familyTree = new Dictionary < string , List < string > >
42
+ var familyTree = new Dictionary < string , string [ ] >
43
43
{
44
44
{ "Priya" , [ "Rami" ] } ,
45
45
{ "Kaito" , [ "Elif" ] }
@@ -51,7 +51,7 @@ public void Unrelated_individuals()
51
51
[ Fact ( Skip = "Remove this Skip property to run this test" ) ]
52
52
public void Complex_graph_cousins ( )
53
53
{
54
- var familyTree = new Dictionary < string , List < string > >
54
+ var familyTree = new Dictionary < string , string [ ] >
55
55
{
56
56
{ "Aiko" , [ "Bao" , "Carlos" ] } ,
57
57
{ "Bao" , [ "Dalia" , "Elias" ] } ,
@@ -113,7 +113,7 @@ public void Complex_graph_cousins()
113
113
[ Fact ( Skip = "Remove this Skip property to run this test" ) ]
114
114
public void Complex_graph_far_removed_nephew ( )
115
115
{
116
- var familyTree = new Dictionary < string , List < string > >
116
+ var familyTree = new Dictionary < string , string [ ] >
117
117
{
118
118
{ "Mina" , [ "Viktor" , "Wang" ] } ,
119
119
{ "Olga" , [ "Yuki" ] } ,
@@ -175,7 +175,7 @@ public void Complex_graph_far_removed_nephew()
175
175
[ Fact ( Skip = "Remove this Skip property to run this test" ) ]
176
176
public void Complex_graph_cousins_several_times_removed ( )
177
177
{
178
- var familyTree = new Dictionary < string , List < string > >
178
+ var familyTree = new Dictionary < string , string [ ] >
179
179
{
180
180
{ "Mina" , [ "Viktor" , "Wang" ] } ,
181
181
{ "Olga" , [ "Yuki" ] } ,
0 commit comments