refactor: BubbleSortRecursion: improving naming, adding standard test (#5267)

* refactor: improving naming, adding standard test

* style: remove `BubbleSortRecursive` from pmd exclude list

* docs: typo fix

---------

Co-authored-by: Alex Klymenko <alx@alx.com>
Co-authored-by: Piotr Idzik <65706193+vil02@users.noreply.github.com>
This commit is contained in:
Alex Klymenko
2024-06-30 20:51:11 +03:00
committed by GitHub
parent 758df7dcc3
commit 208e1e99f0
5 changed files with 45 additions and 59 deletions

View File

@ -0,0 +1,8 @@
package com.thealgorithms.sorts;
public class BubbleSortRecursiveTest extends SortingAlgorithmTest {
@Override
SortAlgorithm getSortAlgorithm() {
return new BubbleSortRecursive();
}
}