You are viewing a plain text version of this content. The canonical link for it is here.
Posted to server-dev@james.apache.org by rc...@apache.org on 2019/12/09 03:09:29 UTC

[james-project] 04/42: [Refactoring] Move JsoupTextExtractorTest to JUnit 5

This is an automated email from the ASF dual-hosted git repository.

rcordier pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/james-project.git

commit cb4bcdd094fce525ff0b80ef02276bc7f008da45
Author: Rene Cordier <rc...@linagora.com>
AuthorDate: Thu Dec 5 15:50:50 2019 +0700

    [Refactoring] Move JsoupTextExtractorTest to JUnit 5
---
 .../store/extractor/JsoupTextExtractorTest.java    | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/mailbox/store/src/test/java/org/apache/james/mailbox/store/extractor/JsoupTextExtractorTest.java b/mailbox/store/src/test/java/org/apache/james/mailbox/store/extractor/JsoupTextExtractorTest.java
index ae7e281..64bd9b9 100644
--- a/mailbox/store/src/test/java/org/apache/james/mailbox/store/extractor/JsoupTextExtractorTest.java
+++ b/mailbox/store/src/test/java/org/apache/james/mailbox/store/extractor/JsoupTextExtractorTest.java
@@ -27,19 +27,19 @@ import java.nio.charset.StandardCharsets;
 
 import org.apache.james.mailbox.extractor.ParsedContent;
 import org.apache.james.mailbox.extractor.TextExtractor;
-import org.junit.Before;
-import org.junit.Test;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Test;
 
-public class JsoupTextExtractorTest {
-    private TextExtractor textExtractor;
+class JsoupTextExtractorTest {
+    TextExtractor textExtractor;
 
-    @Before
-    public void setUp() {
+    @BeforeEach
+    void setUp() {
         textExtractor = new JsoupTextExtractor();
     }
 
     @Test
-    public void extractedTextFromHtmlShouldNotContainTheContentOfTitleTag() throws Exception {
+    void extractedTextFromHtmlShouldNotContainTheContentOfTitleTag() throws Exception {
         InputStream inputStream = ClassLoader.getSystemResourceAsStream("documents/html.txt");
 
         assertThat(textExtractor.extractContent(inputStream, "text/html").getTextualContent().get())
@@ -47,7 +47,7 @@ public class JsoupTextExtractorTest {
     }
 
     @Test
-    public void extractContentShouldHandlePlainText() throws Exception {
+    void extractContentShouldHandlePlainText() throws Exception {
         InputStream inputStream = new ByteArrayInputStream("myText".getBytes(StandardCharsets.UTF_8));
 
         assertThat(textExtractor.extractContent(inputStream, "text/plain").getTextualContent())
@@ -55,7 +55,7 @@ public class JsoupTextExtractorTest {
     }
 
     @Test
-    public void extractContentShouldHandleArbitraryTextMediaType() throws Exception {
+    void extractContentShouldHandleArbitraryTextMediaType() throws Exception {
         InputStream inputStream = new ByteArrayInputStream("myText".getBytes(StandardCharsets.UTF_8));
 
         assertThat(textExtractor.extractContent(inputStream, "text/arbitrary").getTextualContent())
@@ -63,13 +63,13 @@ public class JsoupTextExtractorTest {
     }
 
     @Test
-    public void extractContentShouldReturnEmptyWhenNullData() throws Exception {
+    void extractContentShouldReturnEmptyWhenNullData() throws Exception {
         assertThat(textExtractor.extractContent(null, "text/html"))
             .isEqualTo(ParsedContent.empty());
     }
 
     @Test
-    public void extractContentShouldReturnEmptyWhenNullContentType() throws Exception {
+    void extractContentShouldReturnEmptyWhenNullContentType() throws Exception {
         InputStream inputStream = ClassLoader.getSystemResourceAsStream("documents/html.txt");
 
         assertThat(textExtractor.extractContent(inputStream, null))


---------------------------------------------------------------------
To unsubscribe, e-mail: server-dev-unsubscribe@james.apache.org
For additional commands, e-mail: server-dev-help@james.apache.org