Hi,
Is it a known issue that this project fails to pass its unit test? It looks
like the output test files needs to be updated. The error all seems to be
related to the "doc" tag. The generated output is missing "doc" for protocol
and it has it placed in different location in various other places. Here's a
sample:
Test generated from simple.avdl:
"messages" : {
"hello" : {
"request" : [ {
"name" : "greeting",
"type" : "string",
"doc" : "method 'hello' takes @parameter 'greeting'"
} ],
"response" : "string"
},
In simple.avpr:
"messages" : {
"hello" : {
"doc" : "method 'hello' takes @parameter 'greeting'",
"request" : [ {
"name" : "greeting",
"type" : "string"
} ],
"response" : "string"
},