diff options
author | Jakub Dudycz <jakub.dudycz@nokia.com> | 2019-02-27 12:23:00 +0100 |
---|---|---|
committer | Jakub Dudycz <jakub.dudycz@nokia.com> | 2019-03-05 13:36:57 +0100 |
commit | 78be6c808f0a77c6dc39bd5b0bc9af8f4042febd (patch) | |
tree | cdc7d1598dd5a3f5ee8f3445872e58f151a122dc /sources/hv-collector-test-utils/src/main | |
parent | 7e95f6edd57378ac0cc458d56008f18882acce74 (diff) |
Extract module for ArgBasedConfiguration
Change-Id: Ib11700650583378eb347451950a24c5f238382e4
Signed-off-by: Jakub Dudycz <jakub.dudycz@nokia.com>
Issue-ID: DCAEGEN2-1292
Diffstat (limited to 'sources/hv-collector-test-utils/src/main')
-rw-r--r-- | sources/hv-collector-test-utils/src/main/kotlin/org/onap/dcae/collectors/veshv/tests/utils/configurations.kt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sources/hv-collector-test-utils/src/main/kotlin/org/onap/dcae/collectors/veshv/tests/utils/configurations.kt b/sources/hv-collector-test-utils/src/main/kotlin/org/onap/dcae/collectors/veshv/tests/utils/configurations.kt index 57843b45..5b69afb0 100644 --- a/sources/hv-collector-test-utils/src/main/kotlin/org/onap/dcae/collectors/veshv/tests/utils/configurations.kt +++ b/sources/hv-collector-test-utils/src/main/kotlin/org/onap/dcae/collectors/veshv/tests/utils/configurations.kt @@ -20,8 +20,8 @@ package org.onap.dcae.collectors.veshv.tests.utils import arrow.core.identity -import org.onap.dcae.collectors.veshv.utils.commandline.ArgBasedConfiguration -import org.onap.dcae.collectors.veshv.utils.commandline.WrongArgumentError +import org.onap.dcae.collectors.veshv.commandline.ArgBasedConfiguration +import org.onap.dcae.collectors.veshv.commandline.WrongArgumentError fun <T> ArgBasedConfiguration<T>.parseExpectingSuccess(vararg cmdLine: String): T = @@ -34,4 +34,4 @@ fun <T> ArgBasedConfiguration<T>.parseExpectingFailure(vararg cmdLine: String): parse(cmdLine).fold( ::identity, { throw AssertionError("parsing should have failed") } - )
\ No newline at end of file + ) |