### What would you like to share? Delete the existing file [ReverseStringRecursive.java](https://github.com/TheAlgorithms/Java/blob/master/src/main/java/com/thealgorithms/strings/ReverseStringRecursive.java) and move its functionality and test methods from [ReverseStringRecursiveTest.java](https://github.com/TheAlgorithms/Java/blob/master/src/test/java/com/thealgorithms/strings/ReverseStringRecursiveTest.java) to [ReverseString.java](https://github.com/TheAlgorithms/Java/blob/master/src/main/java/com/thealgorithms/strings/ReverseString.java) and [ReverseStringTest.java](https://github.com/TheAlgorithms/Java/blob/master/src/test/java/com/thealgorithms/strings/ReverseStringTest.java), respectively. - Delete [ReverseStringRecursive.java](https://github.com/TheAlgorithms/Java/blob/master/src/main/java/com/thealgorithms/strings/ReverseStringRecursive.java) - Delete [ReverseStringRecursiveTest.java](https://github.com/TheAlgorithms/Java/blob/master/src/test/java/com/thealgorithms/strings/ReverseStringRecursiveTest.java) - Move the recursive string method from `ReverseStringRecursive` to `ReverseString` - Move the test methods from `ReverseStringRecursiveTest` to `ReverseStringTest` - Ensure the added methods in `ReverseStringTest` are correctly formatted according to project standards ### Expected Outcome - `ReverseStringRecursive.java` and `ReverseStringRecursiveTest.java` are deleted - Recursive method is part of `ReverseString`