cmoon::test::assert_not_equal
Defined in module
<cmoon.test>
|
(1) |
Throws an assert_exception
if the expression first != second
is false
.
This function is ill-formed if the expression first != second
is ill-formed.
Parameters
first | - | First object in the comparison |
second | - | Second object in the comparison |
message | - | Extra information to be added to the error message |
location | - | Information about where in the file this assertion was ran |
Return value
(none)
Example
import cmoon.test;
int super_complicated_function();
class example_test : public cmoon::test::test_case
{
public:
example_test()
: cmoon::test::test_case{"example test"} {}
void operator()() override
{
constexpr int not_expected {5};
const int value {super_complicated_function()};
cmoon::test::assert_not_equal(value, not_expected);
}
};