| Chetan Gaonker | e2b7872 | 2016-02-22 17:27:09 -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 EapPAP import PAPAuthTest | ||||
| 7 | |||||
| 8 | class eap_auth_exchange(unittest.TestCase): | ||||
| 9 | def test_eap_pap(self): | ||||
| 10 | pap = PAPAuthTest() | ||||
| 11 | pap.runTest() | ||||
| 12 | |||||
| 13 | if __name__ == '__main__': | ||||
| 14 | t = PAPAuthTest() | ||||
| 15 | t.runTest() | ||||
| 16 | |||||