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

DoForEach72() private method

private DoForEach72 ( ) : void
return void
public void DoForEach72()
{
    bool b;
    int[] ints = new int[1];
    b = this.DoForEach<int>
            ((IEnumerable<int>)ints, PexChoose.CreateDelegate<Action<int>>());
    Assert.AreEqual<bool>(true, b);
}
UtilitiesTest