asserts
Convenience functions for testing both in unit and higher levels.
Benefits
- Integrates 100% with unittest (see example below)
- Can be easily used without unittest (using unittest.TestCase when you only need convenient asserts is not so nice)
- Saved typing and shorter lines because no need to have 'self.' before asserts. These are static functions after all so that is OK.
- All 'equals' methods (by default) report given values even if optional message given. This behavior can be controlled with the optional values argument.
Drawbacks
- unittest is not able to filter as much non-interesting traceback away as with its own methods because AssertionErrors occur outside.
Most of the functions are copied more or less directly from unittest.TestCase which comes with the following license. Further information about unittest in general can be found from http://pyunit.sourceforge.net/. This module can be used freely in same terms as unittest.
unittest license::
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
|
Examples::
1 2 3 4 5 6 7 8 9 10 |
|
Example output::
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
|
assert_almost_equal(first, second, places=7, msg=None, values=True)
¶
Fail if the two objects are unequal after rounded to given places.
inequality is determined by object's difference rounded to the given number of decimal places (default 7) and comparing to zero. Note that decimal places (from zero) are usually not the same as significant digits (measured from the most significant digit).
Source code in src/robot/utils/asserts.py
assert_equal(first, second, msg=None, values=True, formatter=safe_str)
¶
Fail if given objects are unequal as determined by the '==' operator.
assert_false(expr, msg=None)
¶
assert_none(obj, msg=None, values=True)
¶
Fail the test if given object is not None.
Source code in src/robot/utils/asserts.py
assert_not_almost_equal(first, second, places=7, msg=None, values=True)
¶
Fail if the two objects are unequal after rounded to given places.
Equality is determined by object's difference rounded to to the given number of decimal places (default 7) and comparing to zero. Note that decimal places (from zero) are usually not the same as significant digits (measured from the most significant digit).
Source code in src/robot/utils/asserts.py
assert_not_equal(first, second, msg=None, values=True, formatter=safe_str)
¶
Fail if given objects are equal as determined by the '==' operator.
assert_not_none(obj, msg=None, values=True)
¶
Fail the test if given object is None.
Source code in src/robot/utils/asserts.py
assert_raises(exc_class, callable_obj, *args, **kwargs)
¶
Fail unless an exception of class exc_class is thrown by callable_obj.
callable_obj is invoked with arguments args and keyword arguments kwargs. If a different type of exception is thrown, it will not be caught, and the test case will be deemed to have suffered an error, exactly as for an unexpected exception.
If a correct exception is raised, the exception instance is returned by this method.
Source code in src/robot/utils/asserts.py
assert_raises_with_msg(exc_class, expected_msg, callable_obj, *args, **kwargs)
¶
Similar to fail_unless_raises but also checks the exception message.