Click here to Skip to main content
15,897,371 members
Articles / Programming Languages / Visual Basic

CuttingEdge.Conditions

Rate me:
Please Sign up or sign in to vote.
4.59/5 (19 votes)
23 Jun 2011MIT3 min read 125.8K   67   84  
A pre- and postcondition validation framework based on .NET 3.5 extension methods
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.VisualStudio.TestTools.UnitTesting;

namespace CuttingEdge.Conditions.UnitTests.StringTests
{
    [TestClass]
    public class StringIsNotNullOrWhiteSpaceTests
    {
        [TestMethod]
        [Description("Calling IsNotNullOrWhiteSpace on string x with x = 'a' should succeed.")]
        public void IsNotNullOrWhiteSpaceTest1()
        {
            string a = "a";
            Condition.Requires(a).IsNotNullOrWhiteSpace();
        }

        [TestMethod]
        [ExpectedException(typeof(ArgumentException))]
        [Description("Calling IsNotNullOrWhiteSpace on string '' should fail.")]
        public void IsNotNullOrWhiteSpaceTest2()
        {
            string a = String.Empty;
            Condition.Requires(a).IsNotNullOrWhiteSpace();
        }

        [TestMethod]
        [ExpectedException(typeof(ArgumentNullException))]
        [Description("Calling IsNotNullOrWhiteSpace on string null should fail.")]
        public void IsNotNullOrWhiteSpaceTest3()
        {
            string a = null;
            Condition.Requires(a).IsNotNullOrWhiteSpace();
        }

        [TestMethod]
        [ExpectedException(typeof(ArgumentException))]
        [Description("Calling IsNotNullOrWhiteSpace on string containing only white space characters should fail.")]
        public void IsNotNullOrWhiteSpaceTest4()
        {
            string a = "\t  \n\r";
            Condition.Requires(a).IsNotNullOrWhiteSpace();
        }

        [TestMethod]
        [Description("Calling IsNotNullOrWhiteSpace with conditionDescription parameter should pass.")]
        public void IsNotNullOrWhiteSpaceTest5()
        {
            string a = "valid string";
            Condition.Requires(a).IsNotNullOrWhiteSpace(string.Empty);
        }

        [TestMethod]
        [Description("Calling a failing IsNotNullOrWhiteSpace should throw an Exception with an exception message that contains the given parameterized condition description argument.")]
        public void IsNotNullOrWhiteSpaceTest6()
        {
            string invalidString = string.Empty;
            try
            {
                Condition.Requires(invalidString, "invalidString").IsNotNullOrWhiteSpace("qwe {0} xyz");
                Assert.Fail();
            }
            catch (ArgumentException ex)
            {
                Assert.IsTrue(ex.Message.Contains("qwe invalidString xyz"));
            }
        }

        [TestMethod]
        [Description("Calling IsNotNullOrWhiteSpace on an invalid string should succeed when exceptions are suppressed.")]
        public void IsNotNullOrWhiteSpaceTest7()
        {
            string invalidString = string.Empty;
            Condition.Requires(invalidString).SuppressExceptionsForTest().IsNotNullOrWhiteSpace();
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The MIT License


Written By
Software Developer (Senior)
Netherlands Netherlands
I'm a freelance developer from the Netherlands, working with .NET technology on a daily basis, and officially diagnosed as a workaholic.

Comments and Discussions