blob: 252a63839c1a90054ecaf2f04fb9c75d24dd484c [file] [log] [blame]
Aharoni, Pavel (pa0916)ca3cb012018-10-22 15:29:57 +03001/*-
2 * ============LICENSE_START=======================================================
3 * OSAM
4 * ================================================================================
5 * Copyright (C) 2018 AT&T
6 * ================================================================================
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 * ============LICENSE_END=========================================================
19 */
20
21
22
23package org.onap.osam.utils;
24
25import org.junit.Test;
26
27import com.att.eelf.configuration.EELFLogger;
28
29public class LoggingTest {
30
31 private Logging createTestSubject() {
32 return new Logging();
33 }
34
35 @Test
36 public void testGetMethodName() throws Exception {
37 String result;
38
39 // default test
40 result = Logging.getMethodName();
41 }
42
43 @Test
44 public void testGetMethodCallerName() throws Exception {
45 String result;
46
47 // default test
48 result = Logging.getMethodCallerName();
49 }
50
51 @Test
52 public void testGetRequestsLogger() throws Exception {
53 String serverName = "";
54 EELFLogger result;
55
56 // default test
57 result = Logging.getRequestsLogger(serverName);
58 }
59
60
61}