diff options
author | 2018-03-13 18:31:21 +0200 | |
---|---|---|
committer | 2018-03-13 18:31:21 +0200 | |
commit | d5ec7bf55217508e2b5cebe640d586598379f97a (patch) | |
tree | 4bbe052d2eb67c11c5fbc22998c95e55e7aef4d0 /vid-app-common/src/test/java/org/onap/vid/logging | |
parent | 80098ffa01c5a0f4dd5b99f41c31d51e9dc25762 (diff) |
Unit tests
Change-Id: Ib9f73b7ba5a509610896b8bbdc02c180e60ee959
Issue-ID: VID-197
Signed-off-by: Sonsino, Ofir (os0695) <os0695@intl.att.com>
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 |