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