1
0
This commit is contained in:
Aiden
2026-05-27 11:50:10 +10:00
parent 0d099235c5
commit c0304c575c
55 changed files with 26035 additions and 16 deletions

View File

@@ -77,6 +77,15 @@ class BenchConnectLcdTest(unittest.TestCase):
def test_label_frame_marks_visible_retry_ack_target(self):
self.assertEqual(label_frame(bytes.fromhex("07804020902D")), "visible_retry_0040_2090_candidate")
def test_label_frame_marks_active_selector0_keepalive_report(self):
self.assertEqual(label_frame(bytes.fromhex("00000080805A")), "active_selector0_keepalive_report")
def test_label_frame_marks_copy_completion_exit_selector_006c_candidate(self):
self.assertEqual(label_frame(bytes.fromhex("00006C000036")), "copy_completion_exit_selector_006c_candidate")
def test_label_frame_marks_copy_in_progress_selector_006d_candidate(self):
self.assertEqual(label_frame(bytes.fromhex("00006D000037")), "copy_in_progress_selector_006d_candidate")
if __name__ == "__main__":
unittest.main()