From 6392f1afd29a482f5f214555f9dc1f969e0a7717 Mon Sep 17 00:00:00 2001 From: Krystian Date: Sat, 10 Sep 2016 10:04:05 +0200 Subject: [PATCH] =?UTF-8?q?doda=C5=82em=20test=20html?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/test/java/htmlutils/RemoveHtmlTagsTest.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/test/java/htmlutils/RemoveHtmlTagsTest.java b/src/test/java/htmlutils/RemoveHtmlTagsTest.java index 1498719..e1ffb48 100644 --- a/src/test/java/htmlutils/RemoveHtmlTagsTest.java +++ b/src/test/java/htmlutils/RemoveHtmlTagsTest.java @@ -27,4 +27,10 @@ public void moreComplicatedTest() { String src = "

foo bar foobar baz

"; assertThat(testee.removeTags(src)).isEqualTo("foo bar foobar baz"); } + @Test + public void LIUL() { + String src = "
  • Pierwsze repozytorium Gita\n" + + "
  • "; + assertThat(testee.removeTags(src)).isEqualTo("Pierwsze repozytorium Gita"); + } } \ No newline at end of file