Expectation syntax

Base expectation
ut.expect( actual_value ).to_( matcher );
Negated expectation
ut.expect( actual_value ).not_to( matcher );
Shortcuts syntax
ut.expect( actual_value ).to_matcher;

ut.expect( actual_value ).not_to_matcher;
Comments