@@ -51,49 +51,49 @@ public static function dataIgnoresNothingAndEverything()
5151 {
5252 return [
5353 'fresh list ' => [
54- IgnoreList::getNewInstanceFrom (null ),
55- true ,
56- false ,
54+ ' ignoreList ' => IgnoreList::getNewInstanceFrom (null ),
55+ ' expectIgnoresNothing ' => true ,
56+ ' expectIgnoresEverything ' => false ,
5757 ],
5858 'list from getInstanceIgnoringNothing ' => [
59- IgnoreList::getInstanceIgnoringNothing (),
60- true ,
61- false ,
59+ ' ignoreList ' => IgnoreList::getInstanceIgnoringNothing (),
60+ ' expectIgnoresNothing ' => true ,
61+ ' expectIgnoresEverything ' => false ,
6262 ],
6363 'list from getInstanceIgnoringAll ' => [
64- IgnoreList::getInstanceIgnoringAll (),
65- false ,
66- true ,
64+ ' ignoreList ' => IgnoreList::getInstanceIgnoringAll (),
65+ ' expectIgnoresNothing ' => false ,
66+ ' expectIgnoresEverything ' => true ,
6767 ],
6868 '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 ,
7272 ],
7373 '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 ,
7777 ],
7878 '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 ,
8282 ],
8383 '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 ,
8787 ],
8888 '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 ,
9292 ],
9393 '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 ,
9797 ],
9898 ];
9999
0 commit comments