-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtestng.xml
21 lines (18 loc) · 946 Bytes
/
testng.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" >
<suite name="ProgressorExecutor">
<test name="CodeExecutors">
<classes>
<class name="ch.bfh.progressor.executor.tests.JavaProcessExecutorTest" />
<class name="ch.bfh.progressor.executor.tests.JavaThreadExecutorTest" />
<class name="ch.bfh.progressor.executor.tests.CPlusPlusExecutorTest" />
<class name="ch.bfh.progressor.executor.tests.CSharpExecutorTest" />
<class name="ch.bfh.progressor.executor.tests.PythonExecutorTest" />
<class name="ch.bfh.progressor.executor.tests.JavaScriptExecutorTest" />
<class name="ch.bfh.progressor.executor.tests.PHPExecutorTest" />
<class name="ch.bfh.progressor.executor.tests.KotlinExecutorTest" />
<class name="ch.bfh.progressor.executor.tests.KotlinScriptExecutorTest" />
<class name="ch.bfh.progressor.executor.tests.VBNetExecutorTest" />
</classes>
</test>
</suite>