Skip to content

Latest commit

 

History

History
20 lines (17 loc) · 854 Bytes

above.md

File metadata and controls

20 lines (17 loc) · 854 Bytes

The above operation

up

Asserts that the tested value is greater than the tested value. However, it's often best to assert that the target is equal to its expected value.

Works with:

  • expect(core.time.Duration).[to].[be].above(core.time.Duration)
  • expect(std.datetime.systime.SysTime).[to].[be].above(std.datetime.systime.SysTime)
  • expect(byte).[to].[be].above(byte)
  • expect(ubyte).[to].[be].above(ubyte)
  • expect(short).[to].[be].above(short)
  • expect(ushort).[to].[be].above(ushort)
  • expect(int).[to].[be].above(int)
  • expect(uint).[to].[be].above(uint)
  • expect(long).[to].[be].above(long)
  • expect(ulong).[to].[be].above(ulong)
  • expect(float).[to].[be].above(float)
  • expect(double).[to].[be].above(double)
  • expect(real).[to].[be].above(real)