@@ -57,17 +57,17 @@ public void Test_TypeExtensions_GenericTypes(string name, Type type)
57
57
[ DataRow ( "UnitTests.Extensions.Test_TypeExtensions.Animal.Rabbit<int>.Foo<int[]>" , typeof ( Animal . Rabbit < int > . Foo < int [ ] > ) ) ]
58
58
[ DataRow ( "UnitTests.Extensions.Test_TypeExtensions.Animal.Rabbit<string[]>.Foo<object>" , typeof ( Animal . Rabbit < string [ ] > . Foo < object > ) ) ]
59
59
[ DataRow ( "UnitTests.Extensions.Test_TypeExtensions.Animal.Rabbit<(string, int)?>.Foo<(int, int?)>" , typeof ( Animal . Rabbit < ( string , int ) ? > . Foo < ( int , int ? ) > ) ) ]
60
- [ DataRow ( "UnitTests.Extensions.Test_TypeExtensions.Animal.Giraffe <float, System.DateTime>" , typeof ( Animal . Giraffe < float , DateTime > ) ) ]
61
- [ DataRow ( "UnitTests.Extensions.Test_TypeExtensions.Animal.Giraffe <string, (int?, object)>" , typeof ( Animal . Giraffe < string , ( int ? , object ) > ) ) ]
62
- [ DataRow ( "UnitTests.Extensions.Test_TypeExtensions.Animal.Giraffe <string, (int?, object)?>.Foo" , typeof ( Animal . Giraffe < string , ( int ? , object ) ? > . Foo ) ) ]
63
- [ DataRow ( "UnitTests.Extensions.Test_TypeExtensions.Animal.Giraffe <float, System.DateTime>.Foo" , typeof ( Animal . Giraffe < float , DateTime > . Foo ) ) ]
64
- [ DataRow ( "UnitTests.Extensions.Test_TypeExtensions.Animal.Giraffe <string, (int?, object)?>.Foo<string>" , typeof ( Animal . Giraffe < string , ( int ? , object ) ? > . Foo < string > ) ) ]
65
- [ DataRow ( "UnitTests.Extensions.Test_TypeExtensions.Animal.Giraffe <float, System.DateTime>.Foo<(float?, int)?>" , typeof ( Animal . Giraffe < float , DateTime > . Foo < ( float ? , int ) ? > ) ) ]
60
+ [ DataRow ( "UnitTests.Extensions.Test_TypeExtensions.Animal.Llama <float, System.DateTime>" , typeof ( Animal . Llama < float , DateTime > ) ) ]
61
+ [ DataRow ( "UnitTests.Extensions.Test_TypeExtensions.Animal.Llama <string, (int?, object)>" , typeof ( Animal . Llama < string , ( int ? , object ) > ) ) ]
62
+ [ DataRow ( "UnitTests.Extensions.Test_TypeExtensions.Animal.Llama <string, (int?, object)?>.Foo" , typeof ( Animal . Llama < string , ( int ? , object ) ? > . Foo ) ) ]
63
+ [ DataRow ( "UnitTests.Extensions.Test_TypeExtensions.Animal.Llama <float, System.DateTime>.Foo" , typeof ( Animal . Llama < float , DateTime > . Foo ) ) ]
64
+ [ DataRow ( "UnitTests.Extensions.Test_TypeExtensions.Animal.Llama <string, (int?, object)?>.Foo<string>" , typeof ( Animal . Llama < string , ( int ? , object ) ? > . Foo < string > ) ) ]
65
+ [ DataRow ( "UnitTests.Extensions.Test_TypeExtensions.Animal.Llama <float, System.DateTime>.Foo<(float?, int)?>" , typeof ( Animal . Llama < float , DateTime > . Foo < ( float ? , int ) ? > ) ) ]
66
66
[ DataRow ( "UnitTests.Extensions.Test_TypeExtensions.Vehicle<double>" , typeof ( Vehicle < double > ) ) ]
67
67
[ DataRow ( "UnitTests.Extensions.Test_TypeExtensions.Vehicle<int?>[]" , typeof ( Vehicle < int ? > [ ] ) ) ]
68
68
[ DataRow ( "System.Collections.Generic.List<UnitTests.Extensions.Test_TypeExtensions.Vehicle<int>>" , typeof ( List < Vehicle < int > > ) ) ]
69
69
[ DataRow ( "System.Collections.Generic.List<UnitTests.Extensions.Test_TypeExtensions.Animal.Rabbit<int?>>" , typeof ( List < Animal . Rabbit < int ? > > ) ) ]
70
- [ DataRow ( "System.Collections.Generic.List<UnitTests.Extensions.Test_TypeExtensions.Animal.Giraffe <float, System.DateTime[]>>" , typeof ( List < Animal . Giraffe < float , DateTime [ ] > > ) ) ]
70
+ [ DataRow ( "System.Collections.Generic.List<UnitTests.Extensions.Test_TypeExtensions.Animal.Llama <float, System.DateTime[]>>" , typeof ( List < Animal . Llama < float , DateTime [ ] > > ) ) ]
71
71
public void Test_TypeExtensions_NestedTypes ( string name , Type type )
72
72
{
73
73
Assert . AreEqual ( name , type . ToTypeString ( ) ) ;
@@ -138,7 +138,7 @@ public class Foo<T2>
138
138
}
139
139
}
140
140
141
- public class Giraffe < T1 , T2 >
141
+ public class Llama < T1 , T2 >
142
142
{
143
143
public class Foo
144
144
{
0 commit comments