@@ -109,29 +109,29 @@ public void Returns_same_instance_for_interface()
109109 }
110110
111111 [ Theory ]
112- [ InlineData ( typeof ( bool ) , default ( bool ) ) ]
112+ [ InlineData ( typeof ( bool ) , false ) ]
113113 [ InlineData ( typeof ( bool ? ) , null ) ]
114- [ InlineData ( typeof ( byte ) , default ( byte ) ) ]
114+ [ InlineData ( typeof ( byte ) , 0 ) ]
115115 [ InlineData ( typeof ( byte ? ) , null ) ]
116- [ InlineData ( typeof ( sbyte ) , default ( sbyte ) ) ]
116+ [ InlineData ( typeof ( sbyte ) , 0 ) ]
117117 [ InlineData ( typeof ( sbyte ? ) , null ) ]
118- [ InlineData ( typeof ( char ) , default ( char ) ) ]
118+ [ InlineData ( typeof ( char ) , ' \0 ' ) ]
119119 [ InlineData ( typeof ( char ? ) , null ) ]
120- [ InlineData ( typeof ( short ) , default ( short ) ) ]
120+ [ InlineData ( typeof ( short ) , 0 ) ]
121121 [ InlineData ( typeof ( short ? ) , null ) ]
122- [ InlineData ( typeof ( ushort ) , default ( ushort ) ) ]
122+ [ InlineData ( typeof ( ushort ) , 0 ) ]
123123 [ InlineData ( typeof ( ushort ? ) , null ) ]
124- [ InlineData ( typeof ( int ) , default ( int ) ) ]
124+ [ InlineData ( typeof ( int ) , 0 ) ]
125125 [ InlineData ( typeof ( int ? ) , null ) ]
126- [ InlineData ( typeof ( uint ) , default ( uint ) ) ]
126+ [ InlineData ( typeof ( uint ) , 0 ) ]
127127 [ InlineData ( typeof ( uint ? ) , null ) ]
128- [ InlineData ( typeof ( long ) , default ( long ) ) ]
128+ [ InlineData ( typeof ( long ) , 0 ) ]
129129 [ InlineData ( typeof ( long ? ) , null ) ]
130- [ InlineData ( typeof ( ulong ) , default ( ulong ) ) ]
130+ [ InlineData ( typeof ( ulong ) , 0 ) ]
131131 [ InlineData ( typeof ( ulong ? ) , null ) ]
132- [ InlineData ( typeof ( float ) , default ( float ) ) ]
132+ [ InlineData ( typeof ( float ) , 0 ) ]
133133 [ InlineData ( typeof ( float ? ) , null ) ]
134- [ InlineData ( typeof ( double ) , default ( double ) ) ]
134+ [ InlineData ( typeof ( double ) , 0 ) ]
135135 [ InlineData ( typeof ( double ? ) , null ) ]
136136 [ InlineData ( typeof ( decimal ) , 0 ) ]
137137 [ InlineData ( typeof ( decimal ? ) , null ) ]
0 commit comments