mirror of
https://github.com/jlu5/PyLink.git
synced 2024-11-01 09:19:23 +01:00
14 lines
298 B
Python
14 lines
298 B
Python
import unittest
|
|
|
|
from pylinkirc.protocols import unreal
|
|
|
|
import protocol_test_fixture as ptf
|
|
|
|
class UnrealProtocolTest(ptf.BaseProtocolTest):
|
|
proto_class = unreal.UnrealProtocol
|
|
|
|
# In the future we will have protocol specific test cases here
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|