Starting from version 5.7 Laravel suggests to use the array driver for Mail during testing:
Unfortunately, the documentation tells nothing about this driver. According to the source code, the driver stores all the messages in memory without actually sending them. How to get the stored "sent" messages during unit testing (in order to check them)?
