From d5ec7bf55217508e2b5cebe640d586598379f97a Mon Sep 17 00:00:00 2001 From: "Sonsino, Ofir (os0695)" Date: Tue, 13 Mar 2018 18:31:21 +0200 Subject: Unit tests Change-Id: Ib9f73b7ba5a509610896b8bbdc02c180e60ee959 Issue-ID: VID-197 Signed-off-by: Sonsino, Ofir (os0695) --- .../test/java/org/onap/vid/utils/LoggingTest.java | 43 ++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 vid-app-common/src/test/java/org/onap/vid/utils/LoggingTest.java (limited to 'vid-app-common/src/test/java/org/onap/vid/utils/LoggingTest.java') diff --git a/vid-app-common/src/test/java/org/onap/vid/utils/LoggingTest.java b/vid-app-common/src/test/java/org/onap/vid/utils/LoggingTest.java new file mode 100644 index 00000000..40f4c876 --- /dev/null +++ b/vid-app-common/src/test/java/org/onap/vid/utils/LoggingTest.java @@ -0,0 +1,43 @@ +package org.onap.vid.utils; + +import javax.servlet.http.HttpServletRequest; + +import org.apache.poi.hssf.record.formula.functions.T; +import org.junit.Test; +import org.springframework.http.HttpMethod; + +import com.att.eelf.configuration.EELFLogger; + +public class LoggingTest { + + private Logging createTestSubject() { + return new Logging(); + } + + @Test + public void testGetMethodName() throws Exception { + String result; + + // default test + result = Logging.getMethodName(); + } + + @Test + public void testGetMethodCallerName() throws Exception { + String result; + + // default test + result = Logging.getMethodCallerName(); + } + + @Test + public void testGetRequestsLogger() throws Exception { + String serverName = ""; + EELFLogger result; + + // default test + result = Logging.getRequestsLogger(serverName); + } + + +} \ No newline at end of file -- cgit 1.2.3-korg