$expect = new Expectation(1); $expect->toBeAbove(2); }); }); }); context('notToBeAbove', function () { it('returns if the value is not greater than the min', function () { shouldReturn(function () { $expect = new Expectation(1); $expect->notToBeAbove(2); }); }); it('throws exception if the value is greater than the min', function () { shouldThrowException(function () { $expect = new Expectation(2); $expect->notToBeAbove(1); }); }); }); context('toBeLessThan', function () { it('returns if the value is less than the max', function () { shouldReturn(function () { $expect = new Expectation(1); $expect->toBeLessThan(2); }); }); it('throws exception if it is not less than the max', function () { shouldThrowException(function () { $expect = new Expectation(2); $expect->toBeLessThan(1); });