Ejemplo n.º 1
0
        public void IsNullOrEmpty_should_return_true_on_empty()
        {
            var result = InternalExtensions.IsNullOrEmpty(string.Empty);

            result.Should().BeTrue();
        }
Ejemplo n.º 2
0
        public void IsNullOrEmpty_should_return_false_on_string_with_text()
        {
            var result = InternalExtensions.IsNullOrEmpty("Hello world");

            result.Should().BeFalse();
        }
Ejemplo n.º 3
0
        public void IsNullOrEmpty_should_return_true_on_null()
        {
            var result = InternalExtensions.IsNullOrEmpty(null);

            result.Should().BeTrue();
        }