From fea12603183471715a89bef4806c8a8ab0bc4c65 Mon Sep 17 00:00:00 2001 From: Tim Siegler Date: Mon, 23 Nov 2020 09:35:47 +0100 Subject: [PATCH] Remove public modifier from test methods --- README.md | 4 ++-- custom.xml | 4 ++-- settings.zip | Bin 1687 -> 1688 bytes test_method/example.gif | Bin 61030 -> 62539 bytes test_mvc_method/example.gif | Bin 200651 -> 95336 bytes 5 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 61e5c47..6686793 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ Abbreviation: __test__ Template text: ``` @org.junit.jupiter.api.Test -public void test$Function$() throws java.io.IOException { +void test$Function$() throws java.io.IOException { org.assertj.core.api.Assertions.assertThat("").isEqualTo("false"); } ``` @@ -43,7 +43,7 @@ Template text: private org.springframework.test.web.servlet.MockMvc mockMvc; @org.junit.jupiter.api.Test -public void test$Function$() throws java.lang.Exception { +void test$Function$() throws java.lang.Exception { org.springframework.test.web.servlet.request.MockHttpServletRequestBuilder request = org.springframework.test.web.servlet.request.MockMvcRequestBuilders .get("") .contentType(org.springframework.http.MediaType.APPLICATION_JSON); diff --git a/custom.xml b/custom.xml index 874bf62..8bf7710 100644 --- a/custom.xml +++ b/custom.xml @@ -6,7 +6,7 @@