forked from softservedata/resources
-
Notifications
You must be signed in to change notification settings - Fork 3
/
unit-tests.xml
35 lines (34 loc) · 2.07 KB
/
unit-tests.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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
<suite name="UNIT TESTS">
<listeners>
<listener class-name="org.registrator.community.TestListener" />
</listeners>
<!-- 3 ERROR 5 WARNING 7 INFO 9 DEBUG -->
<test verbose="9" name="UnitTest">
<classes>
<class name="org.registrator.community.service.CommunityServiceTest"/>
<class name="org.registrator.community.service.CronServiceTest"/>
<class name="org.registrator.community.service.DiscreteParameterServiceTest"/>
<class name="org.registrator.community.service.InquiryServiceOldTest"/>
<class name="org.registrator.community.service.InquiryServiceTest"/>
<class name="org.registrator.community.service.LimitLoginAuthenticationProviderTest"/>
<class name="org.registrator.community.service.LinearParameterServiceTest"/>
<class name="org.registrator.community.service.MailServiceTest"/>
<class name="org.registrator.community.service.PasswordChangeServiceTest"/>
<class name="org.registrator.community.service.PasswordRecoveryServiceTest"/>
<class name="org.registrator.community.service.PasswordResetServiceTest"/>
<class name="org.registrator.community.service.PrintServiceTest"/>
<class name="org.registrator.community.service.ResourceDeleteServiceTest"/>
<class name="org.registrator.community.service.ResourceDiscreteValueServiceTest"/>
<class name="org.registrator.community.service.ResourceLinearValueServiceTest"/>
<class name="org.registrator.community.service.ResourceServiceTest"/>
<class name="org.registrator.community.service.ResourceTypeServiceOldTest"/>
<class name="org.registrator.community.service.ResourceTypeServiceTest"/>
<class name="org.registrator.community.service.RoleServiceTest"/>
<class name="org.registrator.community.service.TimeZoneServiceTest"/>
<class name="org.registrator.community.service.UserServiceTest"/>
<class name="org.registrator.community.service.VerificationTokenServiceTest"/>
</classes>
</test>
</suite>