3
0
mirror of https://github.com/jlu5/PyLink.git synced 2024-11-01 09:19:23 +01:00
PyLink/test/test_protocol_unreal.py

14 lines
298 B
Python
Raw Normal View History

2019-08-19 01:36:02 +02:00
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()