public static AssertingThat <Fixed8> IsZero(this AssertingThat <Fixed8> that)
 {
     that.Assertable.Should().Be(Fixed8.Zero);
     return(that);
 }
 public static AssertingThat <Fixed8> IsNotEqual(this AssertingThat <Fixed8> that, object secondValue)
 {
     that.Assertable.Equals(secondValue).Should().BeFalse();
     return(that);
 }
 public static AssertingThat <Fixed8> IsSmallerThan(this AssertingThat <Fixed8> that, Fixed8 secondValue)
 {
     (that.Assertable < secondValue).Should().BeTrue();
     return(that);
 }
 public static AssertingThat <Fixed8> AsLongValue(this AssertingThat <Fixed8> that, long longValue)
 {
     that.Assertable.GetData().Should().Be(longValue);
     return(that);
 }
 public static AssertingThat <Fixed8> IsZero(this AssertingThat <Fixed8> that)
 {
     Assert.AreEqual(Fixed8.Zero, that.Assertable);
     return(that);
 }
 public static AssertingThat <Fixed8> IsSmallerThan(this AssertingThat <Fixed8> that, Fixed8 secondValue)
 {
     Assert.IsTrue(that.Assertable < secondValue);
     return(that);
 }
 public static AssertingThat <Fixed8> IsNotEqual(this AssertingThat <Fixed8> that, object secondValue)
 {
     Assert.IsFalse(that.Assertable.Equals(secondValue));
     return(that);
 }
 public static AssertingThat <Fixed8> AsLongValue(this AssertingThat <Fixed8> that, long longValue)
 {
     Assert.AreEqual(longValue, that.Assertable.GetData());
     return(that);
 }