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:
@@ -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;
|
||||
@@ -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 -> { };
|
||||
Reference in New Issue
Block a user