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