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

@@ -75,8 +75,8 @@ import static org.mockito.Mockito.when;
* @author Mahmoud Ben Hassine
*/
@RunWith(SpringRunner.class)
@ContextConfiguration(classes = {RemoteChunkingManagerStepBuilderTest.BatchConfiguration.class})
public class RemoteChunkingManagerStepBuilderTest {
@ContextConfiguration(classes = {RemoteChunkingManagerStepBuilderTests.BatchConfiguration.class})
public class RemoteChunkingManagerStepBuilderTests {
@Autowired
private JobRepository jobRepository;

View File

@@ -29,7 +29,7 @@ import static org.assertj.core.api.Assertions.assertThat;
/**
* @author Mahmoud Ben Hassine
*/
public class RemoteChunkingWorkerBuilderTest {
public class RemoteChunkingWorkerBuilderTests {
private ItemProcessor<String, String> itemProcessor = new PassThroughItemProcessor<>();
private ItemWriter<String> itemWriter = items -> { };