summaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/test/java/org/onap/vid/utils/LoggingTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'vid-app-common/src/test/java/org/onap/vid/utils/LoggingTest.java')
-rw-r--r--vid-app-common/src/test/java/org/onap/vid/utils/LoggingTest.java43
1 files changed, 43 insertions, 0 deletions
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 000000000..40f4c876f
--- /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