aboutsummaryrefslogtreecommitdiffstats
path: root/components/model-catalog/blueprint-model/archetype-blueprint/src/main/resources/archetype-resources/Tests/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/BlueprintAcceptanceSunnyTest.kt
blob: f40104b86cdaf33c360b36a4532cafa464b431cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package org.onap.ccsdk.cds.blueprintsprocessor.uat

import kotlinx.coroutines.runBlocking
import org.junit.Test
import org.onap.ccsdk.cds.blueprintsprocessor.uat.base.BaseBlueprintsAcceptanceTest
import kotlin.test.Ignore

/**
 * This is a sample implementation of a test class using {@see BaseBlueprintsAcceptanceTest}
 * Please find "TODO" comments, where you need to make your changes
 */
class BlueprintAcceptanceSunnyTest : BaseBlueprintsAcceptanceTest() {

    // TODO: remove @Ignore to activate the test
    @Ignore
    @Test
    fun `Blueprint User Acceptance Tests sunny case`() {
        runBlocking {

            // TODO: replace the following parameters with yours, if needed.
            // As long as you have only one uat.yaml in the Tests folder of the cba,
            // you can leave the parameters as they are.

            callRunUat("../cba", "Tests/uat.yaml")
        }
    }
}