blob: 22d1c76b34c146a27e70f61696b4b9ef6e900e8d [file] [log] [blame]
import unittest
import os,sys
CORD_TEST_UTILS = 'utils'
test_root = os.getenv('CORD_TEST_ROOT') or './'
sys.path.append(test_root + CORD_TEST_UTILS)
from EapTLS import TLSAuthTest
class eap_auth_exchange(unittest.TestCase):
def test_eap_tls(self):
tls = TLSAuthTest()
tls.runTest()
if __name__ == '__main__':
t = TLSAuthTest()
t.runTest()