Remove obsolete unit tests for number conversion and sorting algorithms #455
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
✅ Closes: #454
This pull request removes several test files related to various utility functions and data structures. The most important changes include the deletion of test files for number conversions, sorting algorithms, trie data structures, and date utilities.
Removed test files:
Tests/Number/test_binary_to_decimal.py
: Removed tests forbinary_to_decimal
function.Tests/Number/test_decimal_to_binary.py
: Removed tests fordecimal_to_binary
function.Tests/Number/test_decimal_to_hex.py
: Removed tests fordecimal_to_hex
function.Tests/Number/test_hex_to_decimal.py
: Removed tests forhex_to_decimal
function.Tests/Number/test_octal_to_decimal.py
: Removed tests foroctal_to_decimal
function.Tests/Sorting/test_selection_sort.py
: Removed tests forselection_sort
function.Tests/Tries/test_tries.py
: Removed tests forTrie
class and its methods.Tests/date_utils/test_date_utils.py
: Removed tests forconvert_to_iso8601
function.Other changes:
Tests/date_utils/__init__.py
: Removed__init__.py
file fordate_utils
package.@UTSAVS26 When I was working I found out some test cases can be improved and some are obsolete so they need to be removed. Kindly give
level 3
for my efforts