public void BitDecrement_Double() { IStack <Double> stack = new BoundedArray <Double>(1.0); stack.BitDecrement(); Assert.That(stack.Pop()).Equals(Math.BitDecrement(1.0)); }