-
Notifications
You must be signed in to change notification settings - Fork 109
/
cdi-lite-tck-suite.xml
38 lines (37 loc) · 1.5 KB
/
cdi-lite-tck-suite.xml
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
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
<!--
~ Copyright (c) "2022" Red Hat and others
~
~ This program and the accompanying materials are made available under the
~ Apache Software License 2.0 which is available at:
~ https://www.apache.org/licenses/LICENSE-2.0.
~
~ SPDX-License-Identifier: Apache-2.0
~
-->
<suite name="CDI TCK">
<listeners>
<!-- Optional - intended for debug purpose only -->
<listener class-name="org.jboss.cdi.tck.impl.testng.ConfigurationLoggingListener"/>
<listener class-name="ee.jakarta.tck.coreprofile.util.SuiteLogger"/>
<listener class-name="org.jboss.cdi.tck.impl.testng.ProgressLoggingTestListener"/>
<!-- Optional - it's recommended to disable the default JUnit XML reporter -->
<listener class-name="org.testng.reporters.SuiteHTMLReporter"/>
<listener class-name="org.testng.reporters.FailedReporter"/>
<listener class-name="org.testng.reporters.XMLReporter"/>
<listener class-name="org.testng.reporters.EmailableReporter"/>
<listener class-name="org.testng.reporters.TestHTMLReporter" />
</listeners>
<test name="CDI Lite TCK">
<groups>
<run>
<exclude name="cdi-full"/>
<exclude name="se"/>
</run>
</groups>
<packages>
<package name="org.jboss.cdi.tck.tests.*" />
<package name="org.jboss.cdi.tck.interceptors.tests.*" />
</packages>
</test>
</suite>