blob: 5c9018a422321bed82072c6233ba5a4b66655eab [file] [log] [blame]
import unittest
import os,sys
from nose.tools import assert_equal
from EapPAP import PAPAuthTest
class eap_auth_exchange(unittest.TestCase):
def test_eap_pap(self):
pap = PAPAuthTest()
pap.runTest()
if __name__ == '__main__':
t = PAPAuthTest()
t.runTest()