Fix suffix of test classes names

As per Spring Framework code style [1], the suffix of
test classes should be "Tests". This commit fixes that
for some classes that do not conform to the code style.

[1]: https://github.com/spring-projects/spring-framework/wiki/Code-Style#tests
This commit is contained in:
Mahmoud Ben Hassine
2021-09-13 11:07:41 +02:00
parent e8bbde10e5
commit ddbd0d8ebc
15 changed files with 23 additions and 23 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2018 the original author or authors.
* Copyright 2018-2021 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -27,7 +27,7 @@ import org.springframework.test.context.ContextCustomizer;
/**
* @author Mahmoud Ben Hassine
*/
public class BatchTestContextCustomizerFactoryTest {
public class BatchTestContextCustomizerFactoryTests {
private BatchTestContextCustomizerFactory factory = new BatchTestContextCustomizerFactory();

View File

@@ -29,7 +29,7 @@ import static org.hamcrest.MatcherAssert.assertThat;
/**
* @author Mahmoud Ben Hassine
*/
public class BatchTestContextCustomizerTest {
public class BatchTestContextCustomizerTests {
private BatchTestContextCustomizer contextCustomizer = new BatchTestContextCustomizer();