public void EqualsFailsWhenUsed()
        {
            var ex = Assert.Throws <InvalidOperationException>(() => Assume.Equals(string.Empty, string.Empty));

            Assert.That(ex.Message, Does.StartWith("Assume.Equals should not be used."));
        }