| 37 | # Handlers |
| 38 | ############################################################################### |
| 39 | class BinaryTestServiceHandler(IBinary): |
| 40 | def sendBinary(self, a): |
| 41 | # print(a) |
| 42 | return |
| 43 | |
| 44 | def test_binary_allDirection(self, a, b, e): |
| 45 | e.value = bytearray(b'') |
| 46 | for x in range(5): |
| 47 | e.value.append(a[x] * b[x]) |
| 48 | return |
| 49 | |
| 50 | def test_binary_allDirectionLength(self, a, b, d): |
| 51 | return |
| 52 | |
| 53 | |
| 54 | ############################################################################### |