BuildIt.Tests.UtilitiesTest.DoForEach417 C# (CSharp) Method

DoForEach417() private method

private DoForEach417 ( ) : void
return void
public void DoForEach417()
{
    bool b;
    int[] ints = new int[0];
    b = this.DoForEach<int>((IEnumerable<int>)ints, (Action<int>)null);
    Assert.AreEqual<bool>(false, b);
}
UtilitiesTest