...
1
2
3
4
5
6
7 package codec
8
9
10
11
12
13
14
15
16 import (
17 "testing"
18 )
19
20 func TestMsgpackPythonGenStreamsX(t *testing.T) {
21 doTestPythonGenStreams(t, testMsgpackH)
22 }
23
24 func TestCborPythonGenStreamsX(t *testing.T) {
25 doTestPythonGenStreams(t, testCborH)
26 }
27
28 func TestMsgpackRpcSpecGoClientToPythonSvcX(t *testing.T) {
29 doTestMsgpackRpcSpecGoClientToPythonSvc(t, testMsgpackH)
30 }
31
32 func TestMsgpackRpcSpecPythonClientToGoSvcX(t *testing.T) {
33 doTestMsgpackRpcSpecPythonClientToGoSvc(t, testMsgpackH)
34 }
35
View as plain text