Test the beacon broadcasting class.
()
| 58 | ################################################################################ |
| 59 | |
| 60 | def test(): |
| 61 | "Test the beacon broadcasting class." |
| 62 | b = Beacon(50000) |
| 63 | _thread.start_new_thread(test_send, (b,)) |
| 64 | test_recv(b) |
| 65 | |
| 66 | def test_send(b): |
| 67 | "Test the beacon's send method." |
no test coverage detected