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