summaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/test/java/org/onap/vid/logging/VidLoggerAspectTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'vid-app-common/src/test/java/org/onap/vid/logging/VidLoggerAspectTest.java')
-rw-r--r--vid-app-common/src/test/java/org/onap/vid/logging/VidLoggerAspectTest.java23
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 000000000..7fd9ee739
--- /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