Skip to content

Commit

Permalink
chore: Add test stub
Browse files Browse the repository at this point in the history
  • Loading branch information
sarkarchandan committed Aug 11, 2023
1 parent 7c2be6d commit 1a1ec00
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 0 deletions.
Empty file.
9 changes: 9 additions & 0 deletions concert/tests/unit/comm/test_broadcasting.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import unittest


class TestBroadcastMessaging(unittest.TestCase):
pass


if __name__ == "__main__":
pass
15 changes: 15 additions & 0 deletions concert/tests/unit/comm/test_messaging.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
"""
test_messaging.py
-----------------
Encapsulates unit tests for socket communication and messaging over PyZMQ.
"""

import unittest


class TestReliableMessaging(unittest.TestCase):
pass


if __name__ == "__main__":
pass

0 comments on commit 1a1ec00

Please sign in to comment.