aboutsummaryrefslogtreecommitdiffstats
path: root/vid-automation/TestNg-ApiTest.xml
blob: e987f16042bfa5ffb0e5b53f65edc229c2ba921e (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
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">

<suite verbose="1" name="VID API Tests" annotations="JDK">

    <listeners>
        <listener class-name="vid.automation.test.infra.FeatureTogglingTestngTransformer" />
    </listeners>

    <test name="test">
        <groups>
            <run>
                <!-- These tests require the settings in asdc.properties to be like
                asdc.client.type=LOCAL so cannot run on pipeline-->
                <exclude name="worksOnlyWithLocalASDC"/>

                <!-- these tests call to MaintenanceController which is restricted to
                localhost, so it can not run on jenkins pipeline -->
                <exclude name="worksOnlyWithLocalhostVID"/>

                <!-- tests and features that are still under development but are pushed to develop -->
                <exclude name="underDevelopment"/>

            </run>
        </groups>
        <packages>
            <package name="org.opencomp.vid.*"/>
        </packages>
    </test>
</suite>
press or implied. ~ See the License for the specific language governing permissions and ~ limitations under the License. ~ ============LICENSE_END======================================================= ~ --> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.onap.ccsdk.parent</groupId> <artifactId>binding-parent</artifactId> <version>2.5.0</version> <relativePath/> </parent> <groupId>org.onap.ccsdk.features.sdnr.wt</groupId> <artifactId>sdnr-wt-devicemanager-onap-openroadm-model</artifactId> <version>1.5.0-SNAPSHOT</version> <packaging>bundle</packaging> <name>ccsdk-features :: ${project.artifactId}</name> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0</url> </license> </licenses> <properties> <maven.javadoc.skip>true</maven.javadoc.skip> </properties> <dependencies> </dependencies> <build> <plugins> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <configuration> <excludes> <exclude>**/gen/**</exclude> <exclude>**/generated-sources/**</exclude> <exclude>**/yang-gen-sal/**</exclude> <exclude>**/pax/**</exclude> </excludes> </configuration> </plugin> </plugins> </build> </project>