Merge from ECOMP's repository
[vid.git] / vid-app-common / src / test / java / org / onap / vid / utils / LoggingTest.java
1 package org.onap.vid.utils;
2
3 import com.att.eelf.configuration.EELFLogger;
4 import org.junit.Test;
5
6 public class LoggingTest {
7
8     @Test
9     public void testGetMethodName() throws Exception {
10         String result;
11
12         // default test
13         result = Logging.getMethodName();
14     }
15
16     @Test
17     public void testGetMethodCallerName() throws Exception {
18         String result;
19
20         // default test
21         result = Logging.getMethodCallerName();
22     }
23
24     @Test
25     public void testGetRequestsLogger() throws Exception {
26         String serverName = "";
27         EELFLogger result;
28
29         // default test
30         result = Logging.getRequestsLogger(serverName);
31     }
32
33
34 }