Home
last modified time | relevance | path

Searched refs:_TestException (Results 1 – 5 of 5) sorted by relevance

/dports/math/py-pygsl/pygsl-2.3.0/tests/
H A Derrors_test.py16 class _TestException(unittest.TestCase): class
28 class Testgsl_DomainError (_TestException): errno = en.GSL_EDOM ; exception = errors…
29 class Testgsl_RangeError (_TestException): errno = en.GSL_ERANGE ; exception = errors…
30 class Testgsl_PointerError (_TestException): errno = en.GSL_EFAULT ; exception = errors…
31 class Testgsl_InvalidArgumentError (_TestException): errno = en.GSL_EINVAL ; exception = errors…
32 class Testgsl_GenericError (_TestException): errno = en.GSL_EFAILED ; exception = errors…
33 class Testgsl_FactorizationError (_TestException): errno = en.GSL_EFACTOR ; exception = errors…
34 class Testgsl_SanityCheckError (_TestException): errno = en.GSL_ESANITY ; exception = errors…
35 class Testgsl_BadFuncError (_TestException): errno = en.GSL_EBADFUNC ; exception = errors…
36 class Testgsl_RunAwayError (_TestException): errno = en.GSL_ERUNAWAY ; exception = errors…
[all …]
/dports/graphics/mypaint/mypaint-2.0.1/gui/
H A Dgtkexcepthook.py320 class _TestException (Exception): class
322 raise _TestException("That was supposed to happen.")
/dports/misc/usd/USD-21.11/pxr/base/tf/testenv/
H A DtestTfPython.py427 class _TestException(Exception): class
431 raise _TestException()
433 with self.assertRaises(_TestException):
/dports/devel/brz/breezy-3.2.0/breezy/tests/
H A Dtest_selftest.py1318 class _TestException(Exception): class
1653 raise _TestException()
1656 self.assertIsInstance(e, _TestException)
1659 self.assertIsInstance(e, _TestException)
1663 raise _TestException()
1666 e = self.assertListRaises(_TestException, plain_exception)
1667 self.assertIsInstance(e, _TestException)
1670 self.assertIsInstance(e, _TestException)
1687 self.assertListRaises, _TestException, wrong_exception)
1701 self.assertListRaises, _TestException, success)
[all …]
/dports/devel/brz/breezy-3.2.0/breezy/bzr/tests/
H A Dtest_knit.py361 class _TestException(Exception): class
493 raise _TestException('foobar')
494 except _TestException as e:
636 self.assertRaises(_TestException, access.reload_or_raise, retry_exc)
654 self.assertRaises(_TestException, access.reload_or_raise, retry_exc)