mirror of
https://github.com/zama-ai/concrete.git
synced 2026-02-08 19:44:57 -05:00
26 lines
765 B
Python
26 lines
765 B
Python
"""Test custom assert functions."""
|
|
import pytest
|
|
|
|
from concrete.common.debugging.custom_assert import assert_false, assert_not_reached, assert_true
|
|
|
|
|
|
def test_assert_not_functions():
|
|
"""Test custom assert functions"""
|
|
assert_true(True, "one check")
|
|
assert_false(False, "another check")
|
|
|
|
with pytest.raises(AssertionError) as excinfo:
|
|
assert_not_reached("yet another one")
|
|
|
|
assert "yet another one" in str(excinfo.value)
|
|
|
|
with pytest.raises(AssertionError) as excinfo:
|
|
assert_true(False, "one failing check")
|
|
|
|
assert "one failing check" in str(excinfo.value)
|
|
|
|
with pytest.raises(AssertionError) as excinfo:
|
|
assert_false(True, "another failing check")
|
|
|
|
assert "another failing check" in str(excinfo.value)
|