shouldBeGreaterThan method

void shouldBeGreaterThan(
  1. num expected
)

Asserts that the value is greater than expected.

Implementation

void shouldBeGreaterThan(num expected) => expect(this, greaterThan(expected));