Exemplo n.º 1
0
 def test1(self):
     IsValid = wxa5.IsValidPswd("shanu123", "shanu123")
     self.assertEqual(IsValid, True)
Exemplo n.º 2
0
 def test9(self):
     IsValid = wxa5.IsValidPswd("shanu123", "SHANU123")
     self.assertEqual(IsValid, False)
Exemplo n.º 3
0
 def test8(self):
     IsValid = wxa5.IsValidPswd("", "")
     self.assertEqual(IsValid, False)
Exemplo n.º 4
0
 def test6(self):
     IsValid = wxa5.IsValidPswd("shanu$123", "shanu$123")
     self.assertEqual(IsValid, False)
Exemplo n.º 5
0
 def test5(self):
     IsValid = wxa5.IsValidPswd("1234567", "1234567")
     self.assertEqual(IsValid, False)
Exemplo n.º 6
0
 def test4(self):
     IsValid = wxa5.IsValidPswd("shanushanu", "shanushanu")
     self.assertEqual(IsValid, False)