diff --git a/README.md b/README.md
index f4587d7..0a167a8 100644
--- a/README.md
+++ b/README.md
@@ -1,2 +1,35 @@
# 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);
+ }
diff --git a/pom.xml b/pom.xml
index e550f10..3a62fc4 100644
--- a/pom.xml
+++ b/pom.xml
@@ -3,7 +3,7 @@
4.0.0
net.kemitix
wiser-assertions
- 1.0-SNAPSHOT
+ 0.1.0-RELEASE
jar
wiser-assertions