Skip to content

Commit 5669ea6

Browse files
committed
Consider properties on outer class in nested sliced tests
Prior to this commit, properties configured using the properties attribute of a `@…Test` sliced test annotation would not be considered when processed a `@Nested` test class. This would lead to the nested class not reusing its outer class's application context due to the two having different property configuration. Fixes gh-33317
1 parent 17a4d30 commit 5669ea6

File tree

36 files changed

+407
-123
lines changed

36 files changed

+407
-123
lines changed

spring-boot-project/spring-boot-test-autoconfigure/src/main/java/org/springframework/boot/test/autoconfigure/data/cassandra/DataCassandraTestContextBootstrapper.java

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@
1717
package org.springframework.boot.test.autoconfigure.data.cassandra;
1818

1919
import org.springframework.boot.test.context.SpringBootTestContextBootstrapper;
20-
import org.springframework.core.annotation.MergedAnnotations;
21-
import org.springframework.core.annotation.MergedAnnotations.SearchStrategy;
20+
import org.springframework.test.context.TestContextAnnotationUtils;
2221
import org.springframework.test.context.TestContextBootstrapper;
2322

2423
/**
@@ -31,10 +30,9 @@ class DataCassandraTestContextBootstrapper extends SpringBootTestContextBootstra
3130

3231
@Override
3332
protected String[] getProperties(Class<?> testClass) {
34-
return MergedAnnotations.from(testClass, SearchStrategy.INHERITED_ANNOTATIONS)
35-
.get(DataCassandraTest.class)
36-
.getValue("properties", String[].class)
37-
.orElse(null);
33+
DataCassandraTest dataCassandraTest = TestContextAnnotationUtils.findMergedAnnotation(testClass,
34+
DataCassandraTest.class);
35+
return (dataCassandraTest != null) ? dataCassandraTest.properties() : null;
3836
}
3937

4038
}

spring-boot-project/spring-boot-test-autoconfigure/src/main/java/org/springframework/boot/test/autoconfigure/data/couchbase/DataCouchbaseTestContextBootstrapper.java

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@
1717
package org.springframework.boot.test.autoconfigure.data.couchbase;
1818

1919
import org.springframework.boot.test.context.SpringBootTestContextBootstrapper;
20-
import org.springframework.core.annotation.MergedAnnotations;
21-
import org.springframework.core.annotation.MergedAnnotations.SearchStrategy;
20+
import org.springframework.test.context.TestContextAnnotationUtils;
2221
import org.springframework.test.context.TestContextBootstrapper;
2322

2423
/**
@@ -31,10 +30,9 @@ class DataCouchbaseTestContextBootstrapper extends SpringBootTestContextBootstra
3130

3231
@Override
3332
protected String[] getProperties(Class<?> testClass) {
34-
return MergedAnnotations.from(testClass, SearchStrategy.INHERITED_ANNOTATIONS)
35-
.get(DataCouchbaseTest.class)
36-
.getValue("properties", String[].class)
37-
.orElse(null);
33+
DataCouchbaseTest dataCouchbaseTest = TestContextAnnotationUtils.findMergedAnnotation(testClass,
34+
DataCouchbaseTest.class);
35+
return (dataCouchbaseTest != null) ? dataCouchbaseTest.properties() : null;
3836
}
3937

4038
}

spring-boot-project/spring-boot-test-autoconfigure/src/main/java/org/springframework/boot/test/autoconfigure/data/elasticsearch/DataElasticsearchTestContextBootstrapper.java

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@
1717
package org.springframework.boot.test.autoconfigure.data.elasticsearch;
1818

1919
import org.springframework.boot.test.context.SpringBootTestContextBootstrapper;
20-
import org.springframework.core.annotation.MergedAnnotations;
21-
import org.springframework.core.annotation.MergedAnnotations.SearchStrategy;
20+
import org.springframework.test.context.TestContextAnnotationUtils;
2221
import org.springframework.test.context.TestContextBootstrapper;
2322

2423
/**
@@ -31,10 +30,9 @@ class DataElasticsearchTestContextBootstrapper extends SpringBootTestContextBoot
3130

3231
@Override
3332
protected String[] getProperties(Class<?> testClass) {
34-
return MergedAnnotations.from(testClass, SearchStrategy.INHERITED_ANNOTATIONS)
35-
.get(DataElasticsearchTest.class)
36-
.getValue("properties", String[].class)
37-
.orElse(null);
33+
DataElasticsearchTest dataElasticsearchTest = TestContextAnnotationUtils.findMergedAnnotation(testClass,
34+
DataElasticsearchTest.class);
35+
return (dataElasticsearchTest != null) ? dataElasticsearchTest.properties() : null;
3836
}
3937

4038
}

spring-boot-project/spring-boot-test-autoconfigure/src/main/java/org/springframework/boot/test/autoconfigure/data/jdbc/DataJdbcTestContextBootstrapper.java

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@
1717
package org.springframework.boot.test.autoconfigure.data.jdbc;
1818

1919
import org.springframework.boot.test.context.SpringBootTestContextBootstrapper;
20-
import org.springframework.core.annotation.MergedAnnotations;
21-
import org.springframework.core.annotation.MergedAnnotations.SearchStrategy;
20+
import org.springframework.test.context.TestContextAnnotationUtils;
2221
import org.springframework.test.context.TestContextBootstrapper;
2322

2423
/**
@@ -30,10 +29,8 @@ class DataJdbcTestContextBootstrapper extends SpringBootTestContextBootstrapper
3029

3130
@Override
3231
protected String[] getProperties(Class<?> testClass) {
33-
return MergedAnnotations.from(testClass, SearchStrategy.INHERITED_ANNOTATIONS)
34-
.get(DataJdbcTest.class)
35-
.getValue("properties", String[].class)
36-
.orElse(null);
32+
DataJdbcTest dataJdbcTest = TestContextAnnotationUtils.findMergedAnnotation(testClass, DataJdbcTest.class);
33+
return (dataJdbcTest != null) ? dataJdbcTest.properties() : null;
3734
}
3835

3936
}

spring-boot-project/spring-boot-test-autoconfigure/src/main/java/org/springframework/boot/test/autoconfigure/data/ldap/DataLdapTestContextBootstrapper.java

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@
1717
package org.springframework.boot.test.autoconfigure.data.ldap;
1818

1919
import org.springframework.boot.test.context.SpringBootTestContextBootstrapper;
20-
import org.springframework.core.annotation.MergedAnnotations;
21-
import org.springframework.core.annotation.MergedAnnotations.SearchStrategy;
20+
import org.springframework.test.context.TestContextAnnotationUtils;
2221
import org.springframework.test.context.TestContextBootstrapper;
2322

2423
/**
@@ -30,10 +29,8 @@ class DataLdapTestContextBootstrapper extends SpringBootTestContextBootstrapper
3029

3130
@Override
3231
protected String[] getProperties(Class<?> testClass) {
33-
return MergedAnnotations.from(testClass, SearchStrategy.INHERITED_ANNOTATIONS)
34-
.get(DataLdapTest.class)
35-
.getValue("properties", String[].class)
36-
.orElse(null);
32+
DataLdapTest dataLdapTest = TestContextAnnotationUtils.findMergedAnnotation(testClass, DataLdapTest.class);
33+
return (dataLdapTest != null) ? dataLdapTest.properties() : null;
3734
}
3835

3936
}

spring-boot-project/spring-boot-test-autoconfigure/src/main/java/org/springframework/boot/test/autoconfigure/data/mongo/DataMongoTestContextBootstrapper.java

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@
1717
package org.springframework.boot.test.autoconfigure.data.mongo;
1818

1919
import org.springframework.boot.test.context.SpringBootTestContextBootstrapper;
20-
import org.springframework.core.annotation.MergedAnnotations;
21-
import org.springframework.core.annotation.MergedAnnotations.SearchStrategy;
20+
import org.springframework.test.context.TestContextAnnotationUtils;
2221
import org.springframework.test.context.TestContextBootstrapper;
2322

2423
/**
@@ -30,10 +29,8 @@ class DataMongoTestContextBootstrapper extends SpringBootTestContextBootstrapper
3029

3130
@Override
3231
protected String[] getProperties(Class<?> testClass) {
33-
return MergedAnnotations.from(testClass, SearchStrategy.INHERITED_ANNOTATIONS)
34-
.get(DataMongoTest.class)
35-
.getValue("properties", String[].class)
36-
.orElse(null);
32+
DataMongoTest dataMongoTest = TestContextAnnotationUtils.findMergedAnnotation(testClass, DataMongoTest.class);
33+
return (dataMongoTest != null) ? dataMongoTest.properties() : null;
3734
}
3835

3936
}

spring-boot-project/spring-boot-test-autoconfigure/src/main/java/org/springframework/boot/test/autoconfigure/data/neo4j/DataNeo4jTestContextBootstrapper.java

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@
1717
package org.springframework.boot.test.autoconfigure.data.neo4j;
1818

1919
import org.springframework.boot.test.context.SpringBootTestContextBootstrapper;
20-
import org.springframework.core.annotation.MergedAnnotations;
21-
import org.springframework.core.annotation.MergedAnnotations.SearchStrategy;
20+
import org.springframework.test.context.TestContextAnnotationUtils;
2221
import org.springframework.test.context.TestContextBootstrapper;
2322

2423
/**
@@ -30,10 +29,8 @@ class DataNeo4jTestContextBootstrapper extends SpringBootTestContextBootstrapper
3029

3130
@Override
3231
protected String[] getProperties(Class<?> testClass) {
33-
return MergedAnnotations.from(testClass, SearchStrategy.INHERITED_ANNOTATIONS)
34-
.get(DataNeo4jTest.class)
35-
.getValue("properties", String[].class)
36-
.orElse(null);
32+
DataNeo4jTest dataNeo4jTest = TestContextAnnotationUtils.findMergedAnnotation(testClass, DataNeo4jTest.class);
33+
return (dataNeo4jTest != null) ? dataNeo4jTest.properties() : null;
3734
}
3835

3936
}

spring-boot-project/spring-boot-test-autoconfigure/src/main/java/org/springframework/boot/test/autoconfigure/data/r2dbc/DataR2dbcTestContextBootstrapper.java

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@
1717
package org.springframework.boot.test.autoconfigure.data.r2dbc;
1818

1919
import org.springframework.boot.test.context.SpringBootTestContextBootstrapper;
20-
import org.springframework.core.annotation.MergedAnnotations;
21-
import org.springframework.core.annotation.MergedAnnotations.SearchStrategy;
20+
import org.springframework.test.context.TestContextAnnotationUtils;
2221
import org.springframework.test.context.TestContextBootstrapper;
2322

2423
/**
@@ -30,10 +29,8 @@ class DataR2dbcTestContextBootstrapper extends SpringBootTestContextBootstrapper
3029

3130
@Override
3231
protected String[] getProperties(Class<?> testClass) {
33-
return MergedAnnotations.from(testClass, SearchStrategy.INHERITED_ANNOTATIONS)
34-
.get(DataR2dbcTest.class)
35-
.getValue("properties", String[].class)
36-
.orElse(null);
32+
DataR2dbcTest dataR2dbcTest = TestContextAnnotationUtils.findMergedAnnotation(testClass, DataR2dbcTest.class);
33+
return (dataR2dbcTest != null) ? dataR2dbcTest.properties() : null;
3734
}
3835

3936
}

spring-boot-project/spring-boot-test-autoconfigure/src/main/java/org/springframework/boot/test/autoconfigure/data/redis/DataRedisTestContextBootstrapper.java

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@
1717
package org.springframework.boot.test.autoconfigure.data.redis;
1818

1919
import org.springframework.boot.test.context.SpringBootTestContextBootstrapper;
20-
import org.springframework.core.annotation.MergedAnnotations;
21-
import org.springframework.core.annotation.MergedAnnotations.SearchStrategy;
20+
import org.springframework.test.context.TestContextAnnotationUtils;
2221
import org.springframework.test.context.TestContextBootstrapper;
2322

2423
/**
@@ -30,10 +29,8 @@ class DataRedisTestContextBootstrapper extends SpringBootTestContextBootstrapper
3029

3130
@Override
3231
protected String[] getProperties(Class<?> testClass) {
33-
return MergedAnnotations.from(testClass, SearchStrategy.INHERITED_ANNOTATIONS)
34-
.get(DataRedisTest.class)
35-
.getValue("properties", String[].class)
36-
.orElse(null);
32+
DataRedisTest dataRedisTest = TestContextAnnotationUtils.findMergedAnnotation(testClass, DataRedisTest.class);
33+
return (dataRedisTest != null) ? dataRedisTest.properties() : null;
3734
}
3835

3936
}

spring-boot-project/spring-boot-test-autoconfigure/src/main/java/org/springframework/boot/test/autoconfigure/graphql/GraphQlTestContextBootstrapper.java

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package org.springframework.boot.test.autoconfigure.graphql;
1818

1919
import org.springframework.boot.test.context.SpringBootTestContextBootstrapper;
20-
import org.springframework.core.annotation.MergedAnnotations;
20+
import org.springframework.test.context.TestContextAnnotationUtils;
2121
import org.springframework.test.context.TestContextBootstrapper;
2222

2323
/**
@@ -29,10 +29,8 @@ class GraphQlTestContextBootstrapper extends SpringBootTestContextBootstrapper {
2929

3030
@Override
3131
protected String[] getProperties(Class<?> testClass) {
32-
return MergedAnnotations.from(testClass, MergedAnnotations.SearchStrategy.INHERITED_ANNOTATIONS)
33-
.get(GraphQlTest.class)
34-
.getValue("properties", String[].class)
35-
.orElse(null);
32+
GraphQlTest graphQlTest = TestContextAnnotationUtils.findMergedAnnotation(testClass, GraphQlTest.class);
33+
return (graphQlTest != null) ? graphQlTest.properties() : null;
3634
}
3735

3836
}

spring-boot-project/spring-boot-test-autoconfigure/src/main/java/org/springframework/boot/test/autoconfigure/jdbc/JdbcTestContextBootstrapper.java

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@
1717
package org.springframework.boot.test.autoconfigure.jdbc;
1818

1919
import org.springframework.boot.test.context.SpringBootTestContextBootstrapper;
20-
import org.springframework.core.annotation.MergedAnnotations;
21-
import org.springframework.core.annotation.MergedAnnotations.SearchStrategy;
20+
import org.springframework.test.context.TestContextAnnotationUtils;
2221
import org.springframework.test.context.TestContextBootstrapper;
2322

2423
/**
@@ -30,10 +29,8 @@ class JdbcTestContextBootstrapper extends SpringBootTestContextBootstrapper {
3029

3130
@Override
3231
protected String[] getProperties(Class<?> testClass) {
33-
return MergedAnnotations.from(testClass, SearchStrategy.INHERITED_ANNOTATIONS)
34-
.get(JdbcTest.class)
35-
.getValue("properties", String[].class)
36-
.orElse(null);
32+
JdbcTest jdbcTest = TestContextAnnotationUtils.findMergedAnnotation(testClass, JdbcTest.class);
33+
return (jdbcTest != null) ? jdbcTest.properties() : null;
3734
}
3835

3936
}

spring-boot-project/spring-boot-test-autoconfigure/src/main/java/org/springframework/boot/test/autoconfigure/jooq/JooqTestContextBootstrapper.java

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@
1717
package org.springframework.boot.test.autoconfigure.jooq;
1818

1919
import org.springframework.boot.test.context.SpringBootTestContextBootstrapper;
20-
import org.springframework.core.annotation.MergedAnnotations;
21-
import org.springframework.core.annotation.MergedAnnotations.SearchStrategy;
20+
import org.springframework.test.context.TestContextAnnotationUtils;
2221
import org.springframework.test.context.TestContextBootstrapper;
2322

2423
/**
@@ -30,10 +29,8 @@ class JooqTestContextBootstrapper extends SpringBootTestContextBootstrapper {
3029

3130
@Override
3231
protected String[] getProperties(Class<?> testClass) {
33-
return MergedAnnotations.from(testClass, SearchStrategy.INHERITED_ANNOTATIONS)
34-
.get(JooqTest.class)
35-
.getValue("properties", String[].class)
36-
.orElse(null);
32+
JooqTest jooqTest = TestContextAnnotationUtils.findMergedAnnotation(testClass, JooqTest.class);
33+
return (jooqTest != null) ? jooqTest.properties() : null;
3734
}
3835

3936
}

spring-boot-project/spring-boot-test-autoconfigure/src/main/java/org/springframework/boot/test/autoconfigure/json/JsonTestContextBootstrapper.java

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@
1717
package org.springframework.boot.test.autoconfigure.json;
1818

1919
import org.springframework.boot.test.context.SpringBootTestContextBootstrapper;
20-
import org.springframework.core.annotation.MergedAnnotations;
21-
import org.springframework.core.annotation.MergedAnnotations.SearchStrategy;
20+
import org.springframework.test.context.TestContextAnnotationUtils;
2221
import org.springframework.test.context.TestContextBootstrapper;
2322

2423
/**
@@ -30,10 +29,8 @@ class JsonTestContextBootstrapper extends SpringBootTestContextBootstrapper {
3029

3130
@Override
3231
protected String[] getProperties(Class<?> testClass) {
33-
return MergedAnnotations.from(testClass, SearchStrategy.INHERITED_ANNOTATIONS)
34-
.get(JsonTest.class)
35-
.getValue("properties", String[].class)
36-
.orElse(null);
32+
JsonTest jsonTest = TestContextAnnotationUtils.findMergedAnnotation(testClass, JsonTest.class);
33+
return (jsonTest != null) ? jsonTest.properties() : null;
3734
}
3835

3936
}

spring-boot-project/spring-boot-test-autoconfigure/src/main/java/org/springframework/boot/test/autoconfigure/web/client/RestClientTestContextBootstrapper.java

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@
1717
package org.springframework.boot.test.autoconfigure.web.client;
1818

1919
import org.springframework.boot.test.context.SpringBootTestContextBootstrapper;
20-
import org.springframework.core.annotation.MergedAnnotations;
21-
import org.springframework.core.annotation.MergedAnnotations.SearchStrategy;
20+
import org.springframework.test.context.TestContextAnnotationUtils;
2221
import org.springframework.test.context.TestContextBootstrapper;
2322

2423
/**
@@ -30,10 +29,9 @@ class RestClientTestContextBootstrapper extends SpringBootTestContextBootstrappe
3029

3130
@Override
3231
protected String[] getProperties(Class<?> testClass) {
33-
return MergedAnnotations.from(testClass, SearchStrategy.INHERITED_ANNOTATIONS)
34-
.get(RestClientTest.class)
35-
.getValue("properties", String[].class)
36-
.orElse(null);
32+
RestClientTest restClientTest = TestContextAnnotationUtils.findMergedAnnotation(testClass,
33+
RestClientTest.class);
34+
return (restClientTest != null) ? restClientTest.properties() : null;
3735
}
3836

3937
}

spring-boot-project/spring-boot-test-autoconfigure/src/main/java/org/springframework/boot/test/autoconfigure/web/reactive/WebFluxTestContextBootstrapper.java

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,8 @@
1818

1919
import org.springframework.boot.test.context.ReactiveWebMergedContextConfiguration;
2020
import org.springframework.boot.test.context.SpringBootTestContextBootstrapper;
21-
import org.springframework.core.annotation.MergedAnnotations;
22-
import org.springframework.core.annotation.MergedAnnotations.SearchStrategy;
2321
import org.springframework.test.context.MergedContextConfiguration;
22+
import org.springframework.test.context.TestContextAnnotationUtils;
2423
import org.springframework.test.context.TestContextBootstrapper;
2524

2625
/**
@@ -38,10 +37,8 @@ protected MergedContextConfiguration processMergedContextConfiguration(MergedCon
3837

3938
@Override
4039
protected String[] getProperties(Class<?> testClass) {
41-
return MergedAnnotations.from(testClass, SearchStrategy.INHERITED_ANNOTATIONS)
42-
.get(WebFluxTest.class)
43-
.getValue("properties", String[].class)
44-
.orElse(null);
40+
WebFluxTest webFluxTest = TestContextAnnotationUtils.findMergedAnnotation(testClass, WebFluxTest.class);
41+
return (webFluxTest != null) ? webFluxTest.properties() : null;
4542
}
4643

4744
}

spring-boot-project/spring-boot-test-autoconfigure/src/main/java/org/springframework/boot/test/autoconfigure/web/servlet/WebMvcTestContextBootstrapper.java

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,8 @@
1717
package org.springframework.boot.test.autoconfigure.web.servlet;
1818

1919
import org.springframework.boot.test.context.SpringBootTestContextBootstrapper;
20-
import org.springframework.core.annotation.MergedAnnotations;
21-
import org.springframework.core.annotation.MergedAnnotations.SearchStrategy;
2220
import org.springframework.test.context.MergedContextConfiguration;
21+
import org.springframework.test.context.TestContextAnnotationUtils;
2322
import org.springframework.test.context.TestContextBootstrapper;
2423
import org.springframework.test.context.web.WebMergedContextConfiguration;
2524

@@ -40,10 +39,8 @@ protected MergedContextConfiguration processMergedContextConfiguration(MergedCon
4039

4140
@Override
4241
protected String[] getProperties(Class<?> testClass) {
43-
return MergedAnnotations.from(testClass, SearchStrategy.INHERITED_ANNOTATIONS)
44-
.get(WebMvcTest.class)
45-
.getValue("properties", String[].class)
46-
.orElse(null);
42+
WebMvcTest webMvcTest = TestContextAnnotationUtils.findMergedAnnotation(testClass, WebMvcTest.class);
43+
return (webMvcTest != null) ? webMvcTest.properties() : null;
4744
}
4845

4946
}

spring-boot-project/spring-boot-test-autoconfigure/src/main/java/org/springframework/boot/test/autoconfigure/webservices/client/WebServiceClientTestContextBootstrapper.java

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@
1717
package org.springframework.boot.test.autoconfigure.webservices.client;
1818

1919
import org.springframework.boot.test.context.SpringBootTestContextBootstrapper;
20-
import org.springframework.core.annotation.MergedAnnotations;
21-
import org.springframework.core.annotation.MergedAnnotations.SearchStrategy;
20+
import org.springframework.test.context.TestContextAnnotationUtils;
2221
import org.springframework.test.context.TestContextBootstrapper;
2322

2423
/**
@@ -31,10 +30,9 @@ class WebServiceClientTestContextBootstrapper extends SpringBootTestContextBoots
3130

3231
@Override
3332
protected String[] getProperties(Class<?> testClass) {
34-
return MergedAnnotations.from(testClass, SearchStrategy.INHERITED_ANNOTATIONS)
35-
.get(WebServiceClientTest.class)
36-
.getValue("properties", String[].class)
37-
.orElse(null);
33+
WebServiceClientTest webServiceClientTest = TestContextAnnotationUtils.findMergedAnnotation(testClass,
34+
WebServiceClientTest.class);
35+
return (webServiceClientTest != null) ? webServiceClientTest.properties() : null;
3836
}
3937

4038
}

0 commit comments

Comments
 (0)