blob: 5c9018a422321bed82072c6233ba5a4b66655eab [file] [log] [blame]
Chetan Gaonkere2b78722016-02-22 17:27:09 -08001import unittest
2import os,sys
Chetan Gaonker5b366302016-03-21 16:18:21 -07003from nose.tools import assert_equal
Chetan Gaonkere2b78722016-02-22 17:27:09 -08004from EapPAP import PAPAuthTest
5
6class eap_auth_exchange(unittest.TestCase):
7 def test_eap_pap(self):
8 pap = PAPAuthTest()
9 pap.runTest()
10
11if __name__ == '__main__':
12 t = PAPAuthTest()
13 t.runTest()
14