public void Float64() { for (int i = 0; i < 10000; i++) { double value = _rng.Float64(); Assert.GreaterOrEqual(value, 0); Assert.Less(value, 1); } }