diff options
author | subhash kumar singh <subhash.kumar.singh@huawei.com> | 2017-10-23 14:03:11 +0000 |
---|---|---|
committer | subhash kumar singh <subhash.kumar.singh@huawei.com> | 2017-10-26 09:27:02 +0000 |
commit | b0d8aa12fe8f88059f7fcce741913194d72d0d69 (patch) | |
tree | 309becc99aaa133a9945f84213e21c81f5af7099 /validate/sample-yaml-generator/src/test/java | |
parent | f3d888a58d5775f015b8c2b1864cde2856dd0376 (diff) |
Code refactoring to remove test code generation
Refactor code to remove test code generation code from framework
codebase.
Issue-ID: CLI-55
Change-Id: I4b45ef50143317586c39cf118a1717be150707da
Signed-off-by: subhash kumar singh <subhash.kumar.singh@huawei.com>
Diffstat (limited to 'validate/sample-yaml-generator/src/test/java')
-rw-r--r-- | validate/sample-yaml-generator/src/test/java/org/onap/cli/sample/yaml/SampleYamlGeneratorTest.java | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/validate/sample-yaml-generator/src/test/java/org/onap/cli/sample/yaml/SampleYamlGeneratorTest.java b/validate/sample-yaml-generator/src/test/java/org/onap/cli/sample/yaml/SampleYamlGeneratorTest.java new file mode 100644 index 00000000..c98cb71b --- /dev/null +++ b/validate/sample-yaml-generator/src/test/java/org/onap/cli/sample/yaml/SampleYamlGeneratorTest.java @@ -0,0 +1,32 @@ +/* + * Copyright 2017 Huawei Technologies Co., Ltd. + * + * 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. + */ + +package org.onap.cli.sample.yaml; + +import java.io.IOException; +import java.util.Arrays; + +import org.junit.Test; + +public class SampleYamlGeneratorTest { + + @Test + public void testGenerateSampleYaml() throws IOException { + SampleYamlGenerator.generateSampleYaml(Arrays.asList("testcmd", "-a", "argument"), + "+--------+\n+val +\n+argument+", "test-version-1.0", "target", false); + } + +} |