Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: use the try and except framework for the expected and edge cases. #55

Merged
merged 1 commit into from
Jan 17, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions tests/test_utility.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@
np.array([[[1, 2, 3], [4, 5, 6]]])
])
def test_valid_image_format(valid_array):
assert Utility._input_checker(valid_array)
try:
Utility._input_checker(valid_array)
except Exception as e:
pytest.fail(f"Valid data raised an error: {e}")


# Edge cases
Expand All @@ -23,7 +26,10 @@ def test_valid_image_format(valid_array):
np.array([[]]),
])
def test_edge_image_format(edge_array):
assert Utility._input_checker(edge_array)
try:
Utility._input_checker(edge_array)
except Exception as e:
pytest.fail(f"Edge data raised an error: {e}")


# Erroneous Cases
Expand Down
Loading