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