@@ -51,49 +51,49 @@ public static function dataIgnoresNothingAndEverything()
51
51
{
52
52
return [
53
53
'fresh list ' => [
54
- IgnoreList::getNewInstanceFrom (null ),
55
- true ,
56
- false ,
54
+ ' ignoreList ' => IgnoreList::getNewInstanceFrom (null ),
55
+ ' expectIgnoresNothing ' => true ,
56
+ ' expectIgnoresEverything ' => false ,
57
57
],
58
58
'list from getInstanceIgnoringNothing ' => [
59
- IgnoreList::getInstanceIgnoringNothing (),
60
- true ,
61
- false ,
59
+ ' ignoreList ' => IgnoreList::getInstanceIgnoringNothing (),
60
+ ' expectIgnoresNothing ' => true ,
61
+ ' expectIgnoresEverything ' => false ,
62
62
],
63
63
'list from getInstanceIgnoringAll ' => [
64
- IgnoreList::getInstanceIgnoringAll (),
65
- false ,
66
- true ,
64
+ ' ignoreList ' => IgnoreList::getInstanceIgnoringAll (),
65
+ ' expectIgnoresNothing ' => false ,
66
+ ' expectIgnoresEverything ' => true ,
67
67
],
68
68
'list from getInstanceIgnoringNothing, something set to false ' => [
69
- IgnoreList::getInstanceIgnoringNothing ()->set ('Foo.Bar ' , false ),
70
- true ,
71
- false ,
69
+ ' ignoreList ' => IgnoreList::getInstanceIgnoringNothing ()->set ('Foo.Bar ' , false ),
70
+ ' expectIgnoresNothing ' => true ,
71
+ ' expectIgnoresEverything ' => false ,
72
72
],
73
73
'list from getInstanceIgnoringNothing, something set to true ' => [
74
- IgnoreList::getInstanceIgnoringNothing ()->set ('Foo.Bar ' , true ),
75
- false ,
76
- false ,
74
+ ' ignoreList ' => IgnoreList::getInstanceIgnoringNothing ()->set ('Foo.Bar ' , true ),
75
+ ' expectIgnoresNothing ' => false ,
76
+ ' expectIgnoresEverything ' => false ,
77
77
],
78
78
'list from getInstanceIgnoringAll, something set to false ' => [
79
- IgnoreList::getInstanceIgnoringAll ()->set ('Foo.Bar ' , false ),
80
- false ,
81
- false ,
79
+ ' ignoreList ' => IgnoreList::getInstanceIgnoringAll ()->set ('Foo.Bar ' , false ),
80
+ ' expectIgnoresNothing ' => false ,
81
+ ' expectIgnoresEverything ' => false ,
82
82
],
83
83
'list from getInstanceIgnoringAll, something set to true ' => [
84
- IgnoreList::getInstanceIgnoringAll ()->set ('Foo.Bar ' , true ),
85
- false ,
86
- true ,
84
+ ' ignoreList ' => IgnoreList::getInstanceIgnoringAll ()->set ('Foo.Bar ' , true ),
85
+ ' expectIgnoresNothing ' => false ,
86
+ ' expectIgnoresEverything ' => true ,
87
87
],
88
88
'list from getInstanceIgnoringNothing, something set to true then overridden ' => [
89
- IgnoreList::getInstanceIgnoringNothing ()->set ('Foo.Bar ' , true )->set ('Foo ' , false ),
90
- true ,
91
- false ,
89
+ ' ignoreList ' => IgnoreList::getInstanceIgnoringNothing ()->set ('Foo.Bar ' , true )->set ('Foo ' , false ),
90
+ ' expectIgnoresNothing ' => true ,
91
+ ' expectIgnoresEverything ' => false ,
92
92
],
93
93
'list from getInstanceIgnoringAll, something set to false then overridden ' => [
94
- IgnoreList::getInstanceIgnoringAll ()->set ('Foo.Bar ' , false )->set ('Foo ' , true ),
95
- false ,
96
- true ,
94
+ ' ignoreList ' => IgnoreList::getInstanceIgnoringAll ()->set ('Foo.Bar ' , false )->set ('Foo ' , true ),
95
+ ' expectIgnoresNothing ' => false ,
96
+ ' expectIgnoresEverything ' => true ,
97
97
],
98
98
];
99
99
0 commit comments