teamcity - Spring-boot : how to execute multiple test classes by just starting the service once using rest-assured -


i writing spring-boot tests using rest-assured , these annotations on test class -

java class 1:

@runwith(springjunit4classrunner.class) @springapplicationconfiguration(classes = applicationservice.class) @webappconfiguration @integrationtest("server.port:8083") public class mytestclass{ } 

java class 2:

@runwith(springjunit4classrunner.class) @springapplicationconfiguration(classes = applicationservice.class) @webappconfiguration @integrationtest("server.port:8083") public class mytestanotherclass{ } 

question here , if have execute both java classes on teamcity 1 after other in form of executing integration tests,then there way can have annotation in 1 class once service , running tests can execute or there no way , have put annotations in classes?

actually, can

you can using inheritance:

class configuration

@runwith(springjunit4classrunner.class) @springapplicationconfiguration(classes = applicationservice.class) @webappconfiguration @integrationtest("server.port:8083") public class webappconfigtest {  } 

first test class extending webappconfigtest

public class mytestclass extends webappconfigtest { } 

second test class extending webappconfigtest

public class mytestclass extends webappconfigtest { } 

Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -