Assertions for Wiser SMTP test server from subethamail
Find a file
dependabot[bot] 77aaa9a3e5 Bump spring-context-support from 5.1.3.RELEASE to 5.1.4.RELEASE (#51)
* Bump spring-context-support from 5.1.3.RELEASE to 5.1.4.RELEASE

Bumps [spring-context-support](https://github.com/spring-projects/spring-framework) from 5.1.3.RELEASE to 5.1.4.RELEASE.
- [Release notes](https://github.com/spring-projects/spring-framework/releases)
- [Commits](https://github.com/spring-projects/spring-framework/compare/v5.1.3.RELEASE...v5.1.4.RELEASE)

Signed-off-by: dependabot[bot] <support@dependabot.com>

* [changelog] updated
2019-02-04 20:44:20 +00:00
src Bump kemitix depedencies and convert changelog to org-mode (#49) 2019-01-09 00:03:24 +00:00
.gitignore Simplify .gitignore and remove ide project files 2018-08-23 19:55:14 +01:00
CHANGELOG.org Bump spring-context-support from 5.1.3.RELEASE to 5.1.4.RELEASE (#51) 2019-02-04 20:44:20 +00:00
Jenkinsfile.groovy Bump kemitix depedencies and convert changelog to org-mode (#49) 2019-01-09 00:03:24 +00:00
LICENSE.txt Upgrade kemitix-parent to 5.1.1 to bring Java 9+ compatibility 2018-08-23 22:05:23 +01:00
pom.xml Bump spring-context-support from 5.1.3.RELEASE to 5.1.4.RELEASE (#51) 2019-02-04 20:44:20 +00:00
README.md Add Build and Coverage Status badges to README.md 2016-06-02 21:43:41 +01:00

Build Status Coverage Status

wiser-assertions

Assertions for Wiser SMTP test server from subethamail

Origin

Taken from Rafal Browiec WiserAssertions class.

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);
}