blob: d34f14d096e9a02dfc6d03cf3441dcc27c38d541 [file] [log] [blame]
Chetan Gaonkercd974cd2016-03-04 14:56:58 -08001import unittest
2import os,sys
Chetan Gaonkercd974cd2016-03-04 14:56:58 -08003from EapMD5 import MD5AuthTest
4
5class eap_auth_exchange(unittest.TestCase):
6 def test_eap_md5(self):
7 t = MD5AuthTest()
8 t.runTest()
9 def test_eap_md5_wrg_password(self):
10 t = MD5AuthTest()
11 t._wrong_password()
12 t.runTest()
13
14if __name__ == '__main__':
15 t = MD5AuthTest()
16 t.runTest()
17 ####### Start the EAP-MD5 Negative testcase
18 t._wrong_password()
19 t.runTest()
20