blob: 22d1c76b34c146a27e70f61696b4b9ef6e900e8d [file] [log] [blame]
A R Karthicka2e53d62016-02-19 17:38:30 -08001import unittest
2import os,sys
3CORD_TEST_UTILS = 'utils'
4test_root = os.getenv('CORD_TEST_ROOT') or './'
5sys.path.append(test_root + CORD_TEST_UTILS)
6from EapTLS import TLSAuthTest
7
8class eap_auth_exchange(unittest.TestCase):
9 def test_eap_tls(self):
10 tls = TLSAuthTest()
11 tls.runTest()
12
13if __name__ == '__main__':
14 t = TLSAuthTest()
15 t.runTest()
16