aboutsummaryrefslogtreecommitdiffstats
path: root/common/openecomp-logging-lib/openecomp-logging-core/src/test/java/org/openecomp/core/logging/LoggerFactoryTest.java
blob: 6fcc134957bd1cef7f50bac66cf68c80a6f2f2eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package org.openecomp.core.logging;

import org.openecomp.core.logging.api.LoggerFactory;
import org.testng.annotations.Test;

import java.lang.reflect.Field;

import static org.testng.Assert.assertEquals;

/**
 * @author evitaliy
 * @since 12/09/2016.
 */
public class LoggerFactoryTest {

  @Test
  public void testCreate() throws Exception {
    // test that the service loader loads the right implementation
    LoggerFactory.getLogger(LoggerFactoryTest.class);
    Field factory = LoggerFactory.class.getDeclaredField("SERVICE");
    factory.setAccessible(true);
    Object implementation = factory.get(null);
    assertEquals(Slf4JLoggerCreationService.class, implementation.getClass());
  }
}