public void ForOne_ReturnsUniqueQuantification()
        {
            var spec = new IntegerGreaterThanZero();
            var anySpec = spec.ForOne();

            Assert.That(anySpec, Is.TypeOf<UniqueQuantification<int>>());
            Assert.That(anySpec, Has.Property("Inner").EqualTo(spec));
        }