Пример #1
0
 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);
 }
Пример #2
0
 public void TestCountValue(int sc)
 {
     ocucount.Count c = new ocucount.Count("bill", sc);
     Assert.Equal(c.num, sc);
 }