diff options
Diffstat (limited to 'vid-app-common/src/test/java/org/onap/vid/logging')
-rw-r--r-- | vid-app-common/src/test/java/org/onap/vid/logging/VidLoggerAspectTest.java | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/vid-app-common/src/test/java/org/onap/vid/logging/VidLoggerAspectTest.java b/vid-app-common/src/test/java/org/onap/vid/logging/VidLoggerAspectTest.java new file mode 100644 index 00000000..7fd9ee73 --- /dev/null +++ b/vid-app-common/src/test/java/org/onap/vid/logging/VidLoggerAspectTest.java @@ -0,0 +1,23 @@ +package org.onap.vid.logging; + +import org.aspectj.lang.ProceedingJoinPoint; +import org.junit.Test; +import org.onap.portalsdk.core.util.SystemProperties.SecurityEventTypeEnum; + + +public class VidLoggerAspectTest { + + private VidLoggerAspect createTestSubject() { + return new VidLoggerAspect(); + } + + @Test + public void testVidControllers() throws Exception { + VidLoggerAspect testSubject; + + // default test + testSubject = createTestSubject(); + testSubject.vidControllers(); + } + +}
\ No newline at end of file |