public void ValidateGuidNotToBeEmpty()
        {
            // Given
            var validator = new GuidInverseValidator(Guid.NewGuid());

            // When
            validator.BeEmpty();

            // Then
            Assert.True(true);
        }
        public void ValidateGuidNotToBeEmptyViolated()
        {
            // Given
            var validator = new GuidInverseValidator(Guid.Empty);

            // When
            var exception = Assert.Throws <XunitException>(() => validator.BeEmpty(because: "that's the bottom line"));

            // Then
            Assert.NotNull(exception);
            var rn = Environment.NewLine;

            Assert.Equal(
                $"{rn}validator{rn}is \"{Guid.Empty}\"{rn}but was expected not to be empty{rn}because that's the bottom line",
                exception.UserMessage);
        }