@@ -21,11 +21,11 @@ public void ExecuteOnlyDerivedClassDataRowsWhenBothBaseAndDerivedClassHasDataRow
21
21
// Assert
22
22
VerifyE2E . TestsPassed (
23
23
testResults ,
24
- "DataRowTestMethod (BaseString1)" ,
25
- "DataRowTestMethod (BaseString2)" ,
26
- "DataRowTestMethod (BaseString3)" ,
27
- "DataRowTestMethod (DerivedString1)" ,
28
- "DataRowTestMethod (DerivedString2)" ) ;
24
+ "DataRowTestMethod (\" BaseString1\" )" ,
25
+ "DataRowTestMethod (\" BaseString2\" )" ,
26
+ "DataRowTestMethod (\" BaseString3\" )" ,
27
+ "DataRowTestMethod (\" DerivedString1\" )" ,
28
+ "DataRowTestMethod (\" DerivedString2\" )" ) ;
29
29
}
30
30
31
31
public void ExecuteOnlyDerivedClassDataRowsWhenItOverridesBaseClassDataRows_SimpleDataRows ( )
@@ -40,8 +40,8 @@ public void ExecuteOnlyDerivedClassDataRowsWhenItOverridesBaseClassDataRows_Simp
40
40
// Assert
41
41
VerifyE2E . TestsPassed (
42
42
testResults ,
43
- "DataRowTestMethod (DerivedString1)" ,
44
- "DataRowTestMethod (DerivedString2)" ) ;
43
+ "DataRowTestMethod (\" DerivedString1\" )" ,
44
+ "DataRowTestMethod (\" DerivedString2\" )" ) ;
45
45
}
46
46
47
47
public void DataRowsExecuteWithRequiredAndOptionalParameters ( )
@@ -57,8 +57,8 @@ public void DataRowsExecuteWithRequiredAndOptionalParameters()
57
57
VerifyE2E . TestsPassed (
58
58
testResults ,
59
59
"DataRowTestMethodWithSomeOptionalParameters (123)" ,
60
- "DataRowTestMethodWithSomeOptionalParameters (123,DerivedOptionalString1)" ,
61
- "DataRowTestMethodWithSomeOptionalParameters (123,DerivedOptionalString2, DerivedOptionalString3)" ) ;
60
+ "DataRowTestMethodWithSomeOptionalParameters (123,\" DerivedOptionalString1\" )" ,
61
+ "DataRowTestMethodWithSomeOptionalParameters (123,\" DerivedOptionalString2\" , \" DerivedOptionalString3\" )" ) ;
62
62
}
63
63
64
64
public void DataRowsExecuteWithParamsArrayParameter ( )
@@ -74,9 +74,9 @@ public void DataRowsExecuteWithParamsArrayParameter()
74
74
VerifyE2E . TestsPassed (
75
75
testResults ,
76
76
"DataRowTestMethodWithParamsParameters (2)" ,
77
- "DataRowTestMethodWithParamsParameters (2,DerivedSingleParamsArg)" ,
78
- "DataRowTestMethodWithParamsParameters (2,DerivedParamsArg1, DerivedParamsArg2)" ,
79
- "DataRowTestMethodWithParamsParameters (2,DerivedParamsArg1, DerivedParamsArg2, DerivedParamsArg3)" ) ;
77
+ "DataRowTestMethodWithParamsParameters (2,\" DerivedSingleParamsArg\" )" ,
78
+ "DataRowTestMethodWithParamsParameters (2,\" DerivedParamsArg1\" , \" DerivedParamsArg2\" )" ,
79
+ "DataRowTestMethodWithParamsParameters (2,\" DerivedParamsArg1\" , \" DerivedParamsArg2\" , \" DerivedParamsArg3\" )" ) ;
80
80
}
81
81
82
82
public void DataRowsFailWhenInvalidArgumentsProvided ( )
@@ -93,7 +93,7 @@ public void DataRowsFailWhenInvalidArgumentsProvided()
93
93
testResults ,
94
94
"DataRowTestMethodFailsWithInvalidArguments ()" ,
95
95
"DataRowTestMethodFailsWithInvalidArguments (2)" ,
96
- "DataRowTestMethodFailsWithInvalidArguments (2,DerivedRequiredArgument, DerivedOptionalArgument, DerivedExtraArgument)" ) ;
96
+ "DataRowTestMethodFailsWithInvalidArguments (2,\" DerivedRequiredArgument\" , \" DerivedOptionalArgument\" , \" DerivedExtraArgument\" )" ) ;
97
97
}
98
98
99
99
public void DataRowsShouldSerializeDoublesProperly ( )
@@ -124,7 +124,7 @@ public void DataRowsShouldSerializeMixedTypesProperly()
124
124
// Assert
125
125
VerifyE2E . TestsPassed (
126
126
testResults ,
127
- "DataRowTestMixed (10,10,10,10,10,10,10,10 )" ) ;
127
+ "DataRowTestMixed (10,10,10,10,10,10,10,\" 10 \" )" ) ;
128
128
}
129
129
130
130
public void DataRowsShouldSerializeEnumsProperly ( )
@@ -139,7 +139,7 @@ public void DataRowsShouldSerializeEnumsProperly()
139
139
// Assert
140
140
VerifyE2E . TestsPassed (
141
141
testResults ,
142
- "DataRowEnums ()" ,
142
+ "DataRowEnums (null )" ,
143
143
"DataRowEnums (Alfa)" ,
144
144
"DataRowEnums (Beta)" ,
145
145
"DataRowEnums (Gamma)" ) ;
@@ -202,35 +202,35 @@ public void ExecuteDataRowTests_Enums()
202
202
"DataRowEnum_ULong (Alfa)" ,
203
203
"DataRowEnum_ULong (Beta)" ,
204
204
"DataRowEnum_ULong (Gamma)" ,
205
- "DataRowEnums_Nullable_SByte ()" ,
205
+ "DataRowEnums_Nullable_SByte (null )" ,
206
206
"DataRowEnums_Nullable_SByte (Alfa)" ,
207
207
"DataRowEnums_Nullable_SByte (Beta)" ,
208
208
"DataRowEnums_Nullable_SByte (Gamma)" ,
209
- "DataRowEnums_Nullable_Byte ()" ,
209
+ "DataRowEnums_Nullable_Byte (null )" ,
210
210
"DataRowEnums_Nullable_Byte (Alfa)" ,
211
211
"DataRowEnums_Nullable_Byte (Beta)" ,
212
212
"DataRowEnums_Nullable_Byte (Gamma)" ,
213
- "DataRowEnums_Nullable_Short ()" ,
213
+ "DataRowEnums_Nullable_Short (null )" ,
214
214
"DataRowEnums_Nullable_Short (Alfa)" ,
215
215
"DataRowEnums_Nullable_Short (Beta)" ,
216
216
"DataRowEnums_Nullable_Short (Gamma)" ,
217
- "DataRowEnums_Nullable_UShort ()" ,
217
+ "DataRowEnums_Nullable_UShort (null )" ,
218
218
"DataRowEnums_Nullable_UShort (Alfa)" ,
219
219
"DataRowEnums_Nullable_UShort (Beta)" ,
220
220
"DataRowEnums_Nullable_UShort (Gamma)" ,
221
- "DataRowEnums_Nullable_Int ()" ,
221
+ "DataRowEnums_Nullable_Int (null )" ,
222
222
"DataRowEnums_Nullable_Int (Alfa)" ,
223
223
"DataRowEnums_Nullable_Int (Beta)" ,
224
224
"DataRowEnums_Nullable_Int (Gamma)" ,
225
- "DataRowEnums_Nullable_UInt ()" ,
225
+ "DataRowEnums_Nullable_UInt (null )" ,
226
226
"DataRowEnums_Nullable_UInt (Alfa)" ,
227
227
"DataRowEnums_Nullable_UInt (Beta)" ,
228
228
"DataRowEnums_Nullable_UInt (Gamma)" ,
229
- "DataRowEnums_Nullable_Long ()" ,
229
+ "DataRowEnums_Nullable_Long (null )" ,
230
230
"DataRowEnums_Nullable_Long (Alfa)" ,
231
231
"DataRowEnums_Nullable_Long (Beta)" ,
232
232
"DataRowEnums_Nullable_Long (Gamma)" ,
233
- "DataRowEnums_Nullable_ULong ()" ,
233
+ "DataRowEnums_Nullable_ULong (null )" ,
234
234
"DataRowEnums_Nullable_ULong (Alfa)" ,
235
235
"DataRowEnums_Nullable_ULong (Beta)" ,
236
236
"DataRowEnums_Nullable_ULong (Gamma)" ,
@@ -275,23 +275,23 @@ public void ExecuteDataRowTests_Regular()
275
275
"DataRow1 (20)" ,
276
276
"DataRow1 (30)" ,
277
277
"DataRow1 (40)" ,
278
- "DataRow2 (10,String parameter,True,False)" ,
279
- "DataRow2 (20,String parameter,True,False)" ,
280
- "DataRow2 (30,String parameter,True,False)" ,
281
- "DataRow2 (40,String parameter,True,False)" ,
278
+ "DataRow2 (10,\" String parameter\" ,True,False)" ,
279
+ "DataRow2 (20,\" String parameter\" ,True,False)" ,
280
+ "DataRow2 (30,\" String parameter\" ,True,False)" ,
281
+ "DataRow2 (40,\" String parameter\" ,True,False)" ,
282
282
"DataRowTestDouble (10.01,20.01)" ,
283
283
"DataRowTestDouble (10.02,20.02)" ,
284
- "DataRowTestMixed (1,10,10,10,10,10,10,10,10 )" ,
285
- "DataRowTestMixed (2,10,10,10,10,10,10,10,10 )" ,
286
- "DataRowTestMixed (3,10,10,10,10,10,10,10,10 )" ,
287
- "DataRowTestMixed (4,10,10,10,10,10,10,10,10 )" ,
288
- "NullValueInData ([email protected] , abc123, )" ,
289
- "NullValueInData ([email protected] , abc123, /unit/test)" ,
290
- "NullValue ()" ,
291
- "OneStringArray ([])" ,
292
- "TwoStringArrays ([],[1.4, message])" ,
293
- "OneObjectArray ([,1])" ,
294
- "TwoObjectArrays ([,1],[3])" ,
284
+ "DataRowTestMixed (1,10,10,10,10,10,10,10,\" 10 \" )" ,
285
+ "DataRowTestMixed (2,10,10,10,10,10,10,10,\" 10 \" )" ,
286
+ "DataRowTestMixed (3,10,10,10,10,10,10,10,\" 10 \" )" ,
287
+ "DataRowTestMixed (4,10,10,10,10,10,10,10,\" 10 \" )" ,
288
+ "NullValueInData (\" [email protected] \" , \" abc123\" ,null )" ,
289
+ "NullValueInData (\" [email protected] \" , \" abc123\" , \" /unit/test\" )" ,
290
+ "NullValue (null )" ,
291
+ "OneStringArray ([\" \" ])" ,
292
+ "TwoStringArrays ([\" \" ],[\" 1.4\" , \" message\" ])" ,
293
+ "OneObjectArray ([\" \" ,1])" ,
294
+ "TwoObjectArrays ([\" \" ,1],[3])" ,
295
295
"ThreeObjectArrays ([1],[2],[3])" ,
296
296
"FourObjectArrays ([1],[2],[3],[4])" ,
297
297
"FiveObjectArrays ([1],[2],[3],[4],[5])" ,
@@ -312,6 +312,6 @@ public void ExecuteDataRowTests_Regular()
312
312
testResults ,
313
313
"DataRowTestMethodFailsWithInvalidArguments ()" ,
314
314
"DataRowTestMethodFailsWithInvalidArguments (2)" ,
315
- "DataRowTestMethodFailsWithInvalidArguments (2,DerivedRequiredArgument, DerivedOptionalArgument, DerivedExtraArgument)" ) ;
315
+ "DataRowTestMethodFailsWithInvalidArguments (2,\" DerivedRequiredArgument\" , \" DerivedOptionalArgument\" , \" DerivedExtraArgument\" )" ) ;
316
316
}
317
317
}
0 commit comments