我写了一个发送通讯电子邮件的Symfony Command(以后命令应该通过cronjob执行)。现在我想测试它。我写了一个CommandTest,它扩展了KernelTestCase(就像文档指出https://symfony.com/doc/current/console.html#testing-commands)。目前我只是检查命令输出,但我还想检查是否发送了电子邮件并检查电子邮件内容。这可能就像在WebTestCase中一样吗? (https://symfony.com/doc/current/email/testing.html)