We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
It is possible to check in MBoxWriterViaJavaMailTest
MBoxWriterViaJavaMailTest
for instance, this test fails because the second recipient is missing:
@Test void test_rcpt() throws Exception { ModuleLauncher.BaseConfigureLogging(); try (FileSystem fileSystem = Jimfs.newFileSystem()) { Path testOut = fileSystem.getPath("test_out.eml"); try (OutputStream outputStream = Files.newOutputStream(testOut)) { Message msg = givenMessage("/danke.msg"); MBoxWriterViaJavaMail writer = givenWriter(); writer.write(msg, outputStream); } assertThat(Files.readString(testOut)).contains("To: 'Andrea Pirchl' <a.pirchl@gmx.at>; 'Martin Oberzalek' <kingleo@gmx.at>"); } }
The text was updated successfully, but these errors were encountered:
37bbb4f
lolo101
No branches or pull requests
It is possible to check in
MBoxWriterViaJavaMailTest
for instance, this test fails because the second recipient is missing:
The text was updated successfully, but these errors were encountered: