Exemplo n.º 1
0
 public void TotalTest3()
 {
     Assert.IsTrue(Day4Application.HasADuplicate("111122") && Day4Application.IsIncreasing("111122"));
 }
Exemplo n.º 2
0
 public void TotalTest2()
 {
     Assert.IsFalse(Day4Application.HasADuplicate("123444") && Day4Application.IsIncreasing("123444") && Day4Application.IsSixCharacters("123444"));
 }
Exemplo n.º 3
0
 public void AdjacentDigits()
 {
     Assert.IsTrue(Day4Application.HasADuplicate("122345"));
 }
Exemplo n.º 4
0
 public void TotalTest1()
 {
     Assert.IsTrue(Day4Application.IsIncreasing("112233") && Day4Application.IsSixCharacters("112233") && Day4Application.HasADuplicate("112233"));
 }
Exemplo n.º 5
0
 public void DuplicateEasy()
 {
     Assert.IsTrue(Day4Application.HasADuplicate("11"));
 }