blob: 3ce25f95927402c787e4f9414c8caadefa2bfca9 [file] [log] [blame]
Chetan Gaonkere2b78722016-02-22 17:27:09 -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 EapPAP import PAPAuthTest
7
8class eap_auth_exchange(unittest.TestCase):
9 def test_eap_pap(self):
10 pap = PAPAuthTest()
11 pap.runTest()
12
13if __name__ == '__main__':
14 t = PAPAuthTest()
15 t.runTest()
16