public void AnyWithNullCheck_GivenArrayIsNull_ReturnsFalse()
        {
            // Arrange
            IEnumerable <string> enumerable = null;

            // Act
            bool result = enumerable.AnyWithNullCheck();

            // Assert
            result
            .Should()
            .BeFalse();
        }