blob: d34f14d096e9a02dfc6d03cf3441dcc27c38d541 [file] [log] [blame]
import unittest
import os,sys
from EapMD5 import MD5AuthTest
class eap_auth_exchange(unittest.TestCase):
def test_eap_md5(self):
t = MD5AuthTest()
t.runTest()
def test_eap_md5_wrg_password(self):
t = MD5AuthTest()
t._wrong_password()
t.runTest()
if __name__ == '__main__':
t = MD5AuthTest()
t.runTest()
####### Start the EAP-MD5 Negative testcase
t._wrong_password()
t.runTest()