MikeSchulze / gdUnit3Mono

The c# module to GdUnit3
MIT License
2 stars 0 forks source link

GD-17: AssertThat: support all numeric types #17

Closed MikeSchulze closed 2 years ago

MikeSchulze commented 2 years ago

Describe What

AssertThat is the main entry for all gdunit assertions and should supports all number types.

Describe Why

support

    public static INumberAssert<sbyte> AssertThat(sbyte current) 
    public static INumberAssert<byte> AssertThat(byte current)
    public static INumberAssert<short> AssertThat(short current)
    public static INumberAssert<ushort> AssertThat(ushort current)
    public static INumberAssert<int> AssertThat(int current)
    public static INumberAssert<uint> AssertThat(uint current)
    public static INumberAssert<long> AssertThat(long current)
    public static INumberAssert<ulong> AssertThat(ulong current)
    public static INumberAssert<float> AssertThat(float current)
    public static INumberAssert<double> AssertThat(double current)
    public static INumberAssert<decimal> AssertThat(decimal current)
MikeSchulze commented 2 years ago

https://github.com/MikeSchulze/gdUnit3Mono/pull/5

MikeSchulze commented 2 years ago

done