Click here to Skip to main content
15,896,348 members
Articles / Programming Languages / C# 4.0

Extended Thread Pool

Rate me:
Please Sign up or sign in to vote.
4.98/5 (25 votes)
6 Apr 2013Ms-PL3 min read 81.9K   1.8K   119  
Your own extensible and configurable Thread Pool.
using System.Collections.Generic;
using Nelibur.Sword.Extensions;
using Xunit;

namespace UnitTests.Nelibur.Sword.Extensions
{
    public sealed class CollectionExtensionsTests
    {
        [Fact]
        public void IsEmpty_Empty_True()
        {
            bool result = new List<int>().IsEmpty();
            Assert.True(result);
        }

        [Fact]
        public void IsNotEmpty_NotEmpty_True()
        {
            bool result = new List<int> { 1 }.IsNotEmpty();
            Assert.True(result);
        }

        [Fact]
        public void IsNullOrEmptyNull_Null_True()
        {
            bool result = ((ICollection<int>)null).IsNullOrEmpty();
            Assert.True(result);
        }

        [Fact]
        public void IsNullOrEmpty_Empty_True()
        {
            bool result = new List<int>().IsNullOrEmpty();
            Assert.True(result);
        }

        [Fact]
        public void IsNullOrEmpty_NotEmpty_False()
        {
            bool result = new List<int> { 1 }.IsNullOrEmpty();
            Assert.False(result);
        }
    }
}

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 Microsoft Public License (Ms-PL)


Written By
Software Developer (Senior)
United States United States
B.Sc. in Computer Science.

Comments and Discussions