@@ -58,7 +58,8 @@ public function testValidateRequiredAnnotationsNoError()
58
58
59
59
// mock test object
60
60
$ test = AspectMock::double (
61
- TestObject::class, ['getAnnotations ' => $ annotations , 'getName ' => 'AnnotationsCheckTest ' ]
61
+ TestObject::class,
62
+ ['getAnnotations ' => $ annotations , 'getName ' => 'AnnotationsCheckTest ' ]
62
63
)->make ();
63
64
64
65
$ validateRequiredAnnotations = $ this ->staticCheckClass ->getMethod ('validateRequiredAnnotations ' );
@@ -100,7 +101,8 @@ public function testValidateRequiredAnnotationsMissing()
100
101
101
102
// mock test object
102
103
$ test = AspectMock::double (
103
- TestObject::class, ['getAnnotations ' => $ annotations , 'getName ' => 'AnnotationsCheckTest ' ]
104
+ TestObject::class,
105
+ ['getAnnotations ' => $ annotations , 'getName ' => 'AnnotationsCheckTest ' ]
104
106
)->make ();
105
107
106
108
$ validateRequiredAnnotations = $ this ->staticCheckClass ->getMethod ('validateRequiredAnnotations ' );
@@ -137,7 +139,8 @@ public function testValidateRequiredAnnotationsMissingNoTestCaseId()
137
139
138
140
// mock test object
139
141
$ test = AspectMock::double (
140
- TestObject::class, ['getAnnotations ' => $ annotations , 'getName ' => 'AnnotationsCheckTest ' ]
142
+ TestObject::class,
143
+ ['getAnnotations ' => $ annotations , 'getName ' => 'AnnotationsCheckTest ' ]
141
144
)->make ();
142
145
143
146
$ validateRequiredAnnotations = $ this ->staticCheckClass ->getMethod ('validateRequiredAnnotations ' );
@@ -178,7 +181,8 @@ public function testValidateRequiredAnnotationsEmpty()
178
181
179
182
// mock test object
180
183
$ test = AspectMock::double (
181
- TestObject::class, ['getAnnotations ' => $ annotations , 'getName ' => 'AnnotationsCheckTest ' ]
184
+ TestObject::class,
185
+ ['getAnnotations ' => $ annotations , 'getName ' => 'AnnotationsCheckTest ' ]
182
186
)->make ();
183
187
184
188
$ validateRequiredAnnotations = $ this ->staticCheckClass ->getMethod ('validateRequiredAnnotations ' );
0 commit comments