BuildIt.Tests.UtilitiesTest.DoForEach417 C# (CSharp) 메소드

DoForEach417() 개인적인 메소드

private DoForEach417 ( ) : void
리턴 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