@@ -57,17 +57,17 @@ public void Test_TypeExtensions_GenericTypes(string name, Type type)
5757 [ DataRow ( "UnitTests.Extensions.Test_TypeExtensions.Animal.Rabbit<int>.Foo<int[]>" , typeof ( Animal . Rabbit < int > . Foo < int [ ] > ) ) ]
5858 [ DataRow ( "UnitTests.Extensions.Test_TypeExtensions.Animal.Rabbit<string[]>.Foo<object>" , typeof ( Animal . Rabbit < string [ ] > . Foo < object > ) ) ]
5959 [ 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 ) ? > ) ) ]
6666 [ DataRow ( "UnitTests.Extensions.Test_TypeExtensions.Vehicle<double>" , typeof ( Vehicle < double > ) ) ]
6767 [ DataRow ( "UnitTests.Extensions.Test_TypeExtensions.Vehicle<int?>[]" , typeof ( Vehicle < int ? > [ ] ) ) ]
6868 [ DataRow ( "System.Collections.Generic.List<UnitTests.Extensions.Test_TypeExtensions.Vehicle<int>>" , typeof ( List < Vehicle < int > > ) ) ]
6969 [ 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 [ ] > > ) ) ]
7171 public void Test_TypeExtensions_NestedTypes ( string name , Type type )
7272 {
7373 Assert . AreEqual ( name , type . ToTypeString ( ) ) ;
@@ -138,7 +138,7 @@ public class Foo<T2>
138138 }
139139 }
140140
141- public class Giraffe < T1 , T2 >
141+ public class Llama < T1 , T2 >
142142 {
143143 public class Foo
144144 {
0 commit comments