public void TestAsyncWaitHandle () { var sut = new AsynchronousDelegatesExamples (); Assert.IsTrue (sut.AsyncWaitHandle ()); }
public void TestAsyncCallbackWithState () { var sut = new AsynchronousDelegatesExamples (); Assert.IsTrue (sut.AsyncCallbackWithState ()); Assert.IsTrue (sut.CallBackCalled); }
public void TestIsCompleted () { var sut = new AsynchronousDelegatesExamples (); Assert.IsTrue (sut.IsCompleted ()); }