Update() public method

Increases the internal count by 1
public Update ( ) : void
return void
 public void WaitCompleteTest()
 {
     WaitByCallCount t = new WaitByCallCount(2);
     Assert.IsFalse(t.WaitComplete);
     t.Update();
     t.Update();
     Assert.IsTrue(t.WaitComplete);
 }