aboutsummaryrefslogtreecommitdiffstats
path: root/common/openecomp-common-configuration-management/openecomp-configuration-management-test/src/test/java/org/openecomp/config/TestCMSuite.java
blob: 4ef46f6c9d66e215d59445a05ddf9bf84147e770 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
package org.openecomp.config;

import org.openecomp.config.api.Configuration;
import org.openecomp.config.api.ConfigurationManager;
import org.openecomp.config.test.*;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;

/**
 * Created by sheetalm on 10/25/2016.
 */

@RunWith(Suite.class)
@Suite.SuiteClasses({
        JAVAPropertiesConfigTest.class,
        JSONConfigTest.class,
        XMLConfigTest.class,
        YAMLConfigTest.class,
        CLIFallbackAndLookupTest.class,
        CLITest.class,
        ConfigSourceLocationTest.class,
        DynamicConfigurationTest.class,
        FallbackConfigTest.class,
        FallbackToGlobalNSTest.class,
        GlobalAndNSConfigTest.class,
        ModeAsConfigPropTest.class,
        MultiTenancyConfigTest.class,
        NodeSpecificCLITest.class,
        NotificationForNodeConfigTest.class,
        NotificationOnPropValTest.class,
        ResourceChangeNotificationTest.class,
        UnregisterNotificationTest.class,
        ValidateDefaultModeTest.class,
        ValidateNodeConfigTest.class,
        LoadOrderMergeAndOverrideTest.class


})

public class TestCMSuite extends junit.framework.TestSuite {

    private TestCMSuite() {

    }

    @AfterClass
    public static void tearDown(){
        try {
            ConfigurationUtils.executeDdlSql("truncate dox.configuration_change");
            ConfigurationUtils.executeDdlSql("truncate dox.configuration");
        }
        catch(Exception e){
            e.printStackTrace();
        }
    }
}