2cd0d0cc6293e80fbc92a924809435c3c4fd75cd
[vid.git] / vid-app-common / src / test / java / org / onap / vid / utils / LoggingTest.java
1 package org.onap.vid.utils;
2
3 import javax.servlet.http.HttpServletRequest;
4
5 import org.junit.Test;
6 import org.springframework.http.HttpMethod;
7
8 import com.att.eelf.configuration.EELFLogger;
9
10 public class LoggingTest {
11
12     private Logging createTestSubject() {
13         return new Logging();
14     }
15
16     @Test
17     public void testGetMethodName() throws Exception {
18         String result;
19
20         // default test
21         result = Logging.getMethodName();
22     }
23
24     @Test
25     public void testGetMethodCallerName() throws Exception {
26         String result;
27
28         // default test
29         result = Logging.getMethodCallerName();
30     }
31
32     @Test
33     public void testGetRequestsLogger() throws Exception {
34         String serverName = "";
35         EELFLogger result;
36
37         // default test
38         result = Logging.getRequestsLogger(serverName);
39     }
40
41
42 }