diff options
author | 2020-08-04 09:19:10 +0200 | |
---|---|---|
committer | 2020-08-04 12:29:41 +0200 | |
commit | 86ba43b6e0d298c469ee93ecfc08052d6e8ab8c9 (patch) | |
tree | 4f4e00799bfb69c6989b3f9959048c8685627c7f /trustStoreMerger/src/test | |
parent | d3636201ae70f12f6b0d28c4843c6d03fcb14b9e (diff) |
Create base of Truststore Merger subproject
Issue-ID: DCAEGEN2-2253
Signed-off-by: Remigiusz Janeczek <remigiusz.janeczek@nokia.com>
Change-Id: Ieea2ed6eae212e09a1c818e54d1660ff566e3b09
Diffstat (limited to 'trustStoreMerger/src/test')
-rw-r--r-- | trustStoreMerger/src/test/java/org/onap/oom/truststoremerger/TrustStoreMergerTest.java | 42 |
1 files changed, 42 insertions, 0 deletions
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); + } +} |