Rename class
Definition:
The refactoring consists of pre-pending or appending the Test word in the test class name.
Example from practice:
The following code snippet shows the rename of the test class. The ProducerUploadFile test class of the Camel project. The class does not follow the naming convention of JUnit (line 35, highlighted in red). Its refactoring consists of renaming the class to ProducerUploadFileTest by appending the Test word in it (line 35, highlighted in green).