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

@@ -46,5 +46,5 @@
<beans:bean id="processor" class="org.springframework.batch.item.support.ScriptItemProcessor"
p:script="org/springframework/batch/core/step/item/processor-test-simple.js"/>
<beans:bean id="writer" class="org.springframework.batch.core.step.item.ScriptItemProcessorTest$TestItemWriter"/>
<beans:bean id="writer" class="org.springframework.batch.core.step.item.ScriptItemProcessorTests$TestItemWriter"/>
</beans:beans>