@@ -46,6 +46,7 @@ public void should_succeed()
46
46
}
47
47
}
48
48
49
+ [ TestFixture ]
49
50
public class When_a_list_property_with_a_public_setter_is_set : When_a_list_property_with_is_set_successfully
50
51
{
51
52
protected override Expression < Func < ListEntity , IEnumerable > > GetPropertyExpression ( )
@@ -63,6 +64,7 @@ public override void should_set_the_list_items()
63
64
}
64
65
}
65
66
67
+ [ TestFixture ]
66
68
public class When_a_list_property_with_a_private_setter_is_set : When_a_list_property_with_is_set_successfully
67
69
{
68
70
protected override Expression < Func < ListEntity , IEnumerable > > GetPropertyExpression ( )
@@ -80,6 +82,7 @@ public override void should_set_the_list_items()
80
82
}
81
83
}
82
84
85
+ [ TestFixture ]
83
86
public class When_a_list_property_is_set_with_a_custom_setter : When_a_list_property_with_is_set_successfully
84
87
{
85
88
protected override Expression < Func < ListEntity , IEnumerable > > GetPropertyExpression ( )
@@ -110,6 +113,7 @@ public override void should_set_the_list_items()
110
113
}
111
114
}
112
115
116
+ [ TestFixture ]
113
117
public class When_a_set_property_with_a_public_setter_is_set : When_a_list_property_with_is_set_successfully
114
118
{
115
119
protected override Expression < Func < ListEntity , IEnumerable > > GetPropertyExpression ( )
@@ -127,6 +131,7 @@ public override void should_set_the_list_items()
127
131
}
128
132
}
129
133
134
+ [ TestFixture ]
130
135
public class When_a_typed_set_property_with_a_public_setter_is_set : When_a_list_property_with_is_set_successfully
131
136
{
132
137
protected override Expression < Func < ListEntity , IEnumerable > > GetPropertyExpression ( )
@@ -144,6 +149,7 @@ public override void should_set_the_list_items()
144
149
}
145
150
}
146
151
152
+ [ TestFixture ]
147
153
public class When_a_collection_property_with_a_public_setter_is_set : When_a_list_property_with_is_set_successfully
148
154
{
149
155
protected override Expression < Func < ListEntity , IEnumerable > > GetPropertyExpression ( )
@@ -164,6 +170,7 @@ public override void should_set_the_list_items()
164
170
}
165
171
}
166
172
173
+ [ TestFixture ]
167
174
public class When_an_array_property_with_a_public_setter_is_set : When_a_list_property_with_is_set_successfully
168
175
{
169
176
protected override Expression < Func < ListEntity , IEnumerable > > GetPropertyExpression ( )
@@ -181,6 +188,7 @@ public override void should_set_the_list_items()
181
188
}
182
189
}
183
190
191
+ [ TestFixture ]
184
192
public class When_an_list_property_with_a_public_setter_is_set : When_a_list_property_with_is_set_successfully
185
193
{
186
194
protected override Expression < Func < ListEntity , IEnumerable > > GetPropertyExpression ( )
@@ -198,6 +206,7 @@ public override void should_set_the_list_items()
198
206
}
199
207
}
200
208
209
+ [ TestFixture ]
201
210
public class When_a_list_property_with_a_backing_field_is_set : With_list_entity
202
211
{
203
212
protected override Expression < Func < ListEntity , IEnumerable > > GetPropertyExpression ( )
@@ -224,6 +233,7 @@ public void should_tell_which_property_failed_to_be_set()
224
233
}
225
234
}
226
235
236
+ [ TestFixture ]
227
237
public class When_a_list_property_is_set_with_a_custom_setter_that_fails : With_list_entity
228
238
{
229
239
protected override Expression < Func < ListEntity , IEnumerable > > GetPropertyExpression ( )
@@ -272,6 +282,7 @@ public override void establish_context()
272
282
}
273
283
}
274
284
285
+ [ TestFixture ]
275
286
public class When_the_checked_list_is_equal_to_the_expected_list : With_initialized_list
276
287
{
277
288
public override void establish_context ( )
@@ -292,6 +303,7 @@ public void should_succeed()
292
303
}
293
304
}
294
305
306
+ [ TestFixture ]
295
307
public class When_the_checked_list_has_transposed_items_of_the_expected_list : With_initialized_list
296
308
{
297
309
public override void establish_context ( )
@@ -319,6 +331,7 @@ public void should_tell_that_the_list_element_count_does_not_match()
319
331
}
320
332
}
321
333
334
+ [ TestFixture ]
322
335
public class When_the_checked_list_does_not_have_the_same_number_of_elements_as_the_expected_list : With_initialized_list
323
336
{
324
337
public override void establish_context ( )
@@ -346,6 +359,7 @@ public void should_tell_that_the_list_element_count_does_not_match()
346
359
}
347
360
}
348
361
362
+ [ TestFixture ]
349
363
public class When_the_checked_list_is_null : With_initialized_list
350
364
{
351
365
public override void establish_context ( )
@@ -373,6 +387,7 @@ public void should_tell_that_actual_list_is_null()
373
387
}
374
388
}
375
389
390
+ [ TestFixture ]
376
391
public class When_the_expected_list_is_null : With_initialized_list
377
392
{
378
393
public override void establish_context ( )
@@ -452,6 +467,7 @@ public void should_perform_the_check_with_the_custom_equality_comparer()
452
467
}
453
468
}
454
469
470
+ [ TestFixture ]
455
471
public class When_a_list_is_checked_with_a_custom_equality_comparer_that_fails : With_initialized_list
456
472
{
457
473
private InvalidOperationException exception ;
@@ -482,6 +498,7 @@ public void should_fail_with_the_exception_from_the_equality_comparer()
482
498
}
483
499
}
484
500
501
+ [ TestFixture ]
485
502
public class When_the_checked_typed_set_is_equal_to_the_expected_list : With_initialized_list
486
503
{
487
504
public override void establish_context ( )
@@ -506,6 +523,7 @@ public void should_succeed()
506
523
}
507
524
}
508
525
526
+ [ TestFixture ]
509
527
public class When_the_checked_set_is_equal_to_the_expected_list : With_initialized_list
510
528
{
511
529
public override void establish_context ( )
@@ -530,6 +548,7 @@ public void should_succeed()
530
548
}
531
549
}
532
550
551
+ [ TestFixture ]
533
552
public class When_the_collection_is_equal_to_the_expected_list : With_initialized_list
534
553
{
535
554
public override void establish_context ( )
@@ -554,6 +573,7 @@ public void should_succeed()
554
573
}
555
574
}
556
575
576
+ [ TestFixture ]
557
577
public class When_the_typed_list_is_equal_to_the_expected_list : With_initialized_list
558
578
{
559
579
public override void establish_context ( )
@@ -578,6 +598,7 @@ public void should_succeed()
578
598
}
579
599
}
580
600
601
+ [ TestFixture ]
581
602
public class When_the_checked_array_is_equal_to_the_expected_list : With_initialized_list
582
603
{
583
604
public override void establish_context ( )
0 commit comments