Chetan Gaonker | e2b7872 | 2016-02-22 17:27:09 -0800 | [diff] [blame] | 1 | import unittest |
2 | import os,sys | ||||
Chetan Gaonker | 5b36630 | 2016-03-21 16:18:21 -0700 | [diff] [blame] | 3 | from nose.tools import assert_equal |
Chetan Gaonker | e2b7872 | 2016-02-22 17:27:09 -0800 | [diff] [blame] | 4 | from EapPAP import PAPAuthTest |
5 | |||||
6 | class eap_auth_exchange(unittest.TestCase): | ||||
7 | def test_eap_pap(self): | ||||
8 | pap = PAPAuthTest() | ||||
9 | pap.runTest() | ||||
10 | |||||
11 | if __name__ == '__main__': | ||||
12 | t = PAPAuthTest() | ||||
13 | t.runTest() | ||||
14 |