mythicallage
Results
2
issues of
mythicallage
The file `lib\ObjectStorage\Abstract.php` has error in line 352 `throw new ObjectStorage_Exception(null, 'Invalid MIME type is provided.');`. It must be `throw new ObjectStorage_Exception('Invalid MIME type is provided.');`
### Context case: I'm trying to test only one controller like: ```java @WebMvcTest(UserController.class) public class UserControllerTest { // some tests here } ``` And then I've got like this: ```bash...