public void TestCountIncrease(int sc) { ocucount.Count c = new ocucount.Count("bill", 0); for (int i = 0; i < sc; i++) { c.increaseCount(); } Assert.Equal(c.num, sc); }
public void TestCountValue(int sc) { ocucount.Count c = new ocucount.Count("bill", sc); Assert.Equal(c.num, sc); }