@@ -109,29 +109,29 @@ public void Returns_same_instance_for_interface()
109
109
}
110
110
111
111
[ Theory ]
112
- [ InlineData ( typeof ( bool ) , default ( bool ) ) ]
112
+ [ InlineData ( typeof ( bool ) , false ) ]
113
113
[ InlineData ( typeof ( bool ? ) , null ) ]
114
- [ InlineData ( typeof ( byte ) , default ( byte ) ) ]
114
+ [ InlineData ( typeof ( byte ) , 0 ) ]
115
115
[ InlineData ( typeof ( byte ? ) , null ) ]
116
- [ InlineData ( typeof ( sbyte ) , default ( sbyte ) ) ]
116
+ [ InlineData ( typeof ( sbyte ) , 0 ) ]
117
117
[ InlineData ( typeof ( sbyte ? ) , null ) ]
118
- [ InlineData ( typeof ( char ) , default ( char ) ) ]
118
+ [ InlineData ( typeof ( char ) , ' \0 ' ) ]
119
119
[ InlineData ( typeof ( char ? ) , null ) ]
120
- [ InlineData ( typeof ( short ) , default ( short ) ) ]
120
+ [ InlineData ( typeof ( short ) , 0 ) ]
121
121
[ InlineData ( typeof ( short ? ) , null ) ]
122
- [ InlineData ( typeof ( ushort ) , default ( ushort ) ) ]
122
+ [ InlineData ( typeof ( ushort ) , 0 ) ]
123
123
[ InlineData ( typeof ( ushort ? ) , null ) ]
124
- [ InlineData ( typeof ( int ) , default ( int ) ) ]
124
+ [ InlineData ( typeof ( int ) , 0 ) ]
125
125
[ InlineData ( typeof ( int ? ) , null ) ]
126
- [ InlineData ( typeof ( uint ) , default ( uint ) ) ]
126
+ [ InlineData ( typeof ( uint ) , 0 ) ]
127
127
[ InlineData ( typeof ( uint ? ) , null ) ]
128
- [ InlineData ( typeof ( long ) , default ( long ) ) ]
128
+ [ InlineData ( typeof ( long ) , 0 ) ]
129
129
[ InlineData ( typeof ( long ? ) , null ) ]
130
- [ InlineData ( typeof ( ulong ) , default ( ulong ) ) ]
130
+ [ InlineData ( typeof ( ulong ) , 0 ) ]
131
131
[ InlineData ( typeof ( ulong ? ) , null ) ]
132
- [ InlineData ( typeof ( float ) , default ( float ) ) ]
132
+ [ InlineData ( typeof ( float ) , 0 ) ]
133
133
[ InlineData ( typeof ( float ? ) , null ) ]
134
- [ InlineData ( typeof ( double ) , default ( double ) ) ]
134
+ [ InlineData ( typeof ( double ) , 0 ) ]
135
135
[ InlineData ( typeof ( double ? ) , null ) ]
136
136
[ InlineData ( typeof ( decimal ) , 0 ) ]
137
137
[ InlineData ( typeof ( decimal ? ) , null ) ]
0 commit comments