wiser-assertions/README.md
Paul Campbell a4cca76681 README.md: add usage example
Signed-off-by: Paul Campbell <pcampbell@kemitix.net>
2015-04-08 14:13:47 +01:00

35 lines
822 B
Markdown

# wiser-assertions
Assertions for Wiser SMTP test server from subethamail
## Usage
@Before
public void setUp() throws IOException {
wiser = new Wiser(PORT);
wiser.start();
}
@After
public void tearDown() {
wiser.stop();
}
@Test
public void testMail() {
//given
...
//when
...
//then
WiserAssertions.assertReceivedMessage(wiser)
.from(sender)
.to(recipient_alpha)
.to(recipient_beta)
.withSubjectContains(subject_prefix)
.withSubjectContains(subject_suffix)
.withContentContains(message_element_1)
.withContentContains(message_element_2)
.withContentContains(message_element_3);
}