From 86ba43b6e0d298c469ee93ecfc08052d6e8ab8c9 Mon Sep 17 00:00:00 2001 From: Remigiusz Janeczek Date: Tue, 4 Aug 2020 09:19:10 +0200 Subject: Create base of Truststore Merger subproject Issue-ID: DCAEGEN2-2253 Signed-off-by: Remigiusz Janeczek Change-Id: Ieea2ed6eae212e09a1c818e54d1660ff566e3b09 --- .../oom/truststoremerger/TrustStoreMergerTest.java | 42 ++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 trustStoreMerger/src/test/java/org/onap/oom/truststoremerger/TrustStoreMergerTest.java (limited to 'trustStoreMerger/src/test/java') diff --git a/trustStoreMerger/src/test/java/org/onap/oom/truststoremerger/TrustStoreMergerTest.java b/trustStoreMerger/src/test/java/org/onap/oom/truststoremerger/TrustStoreMergerTest.java new file mode 100644 index 00000000..11b18bf1 --- /dev/null +++ b/trustStoreMerger/src/test/java/org/onap/oom/truststoremerger/TrustStoreMergerTest.java @@ -0,0 +1,42 @@ +/*============LICENSE_START======================================================= + * oom-truststore-merger + * ================================================================================ + * Copyright (C) 2020 Nokia. All rights reserved. + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ============LICENSE_END========================================================= + */ + +package org.onap.oom.truststoremerger; + +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.mockito.Mock; +import org.mockito.junit.jupiter.MockitoExtension; +import org.onap.oom.truststoremerger.api.ExitStatus; + +import static org.mockito.Mockito.verify; + +@ExtendWith(MockitoExtension.class) +class TrustStoreMergerTest { + + @Mock + AppExitHandler appExitHandler; + + @Test + void shouldExitWithSuccess() { + new TrustStoreMerger(appExitHandler).run(); + + verify(appExitHandler).exit(ExitStatus.SUCCESS); + } +} -- cgit