Skip to content

Commit

Permalink
implement abstract methods
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-B committed Feb 2, 2024
1 parent e9ca9c2 commit 890895f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions unittests/test_transceiver.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,12 @@
class MockExtendedTransceiver(MockableTransceiver, ExtendedTransceiver):
pass

def _where_is_xy(self, x: int, y: int) -> None:
return None

def scamp_connection_selector(self):
raise NotImplementedError


class TestTransceiver(unittest.TestCase):

Expand Down

0 comments on commit 890895f

Please sign in to comment.