export_test.go | |
---|---|
|
|
Export for testing This source file contains name aliases of all package-private functions that need to be called from unit tests. Aliases should start with uppercase letter because unit tests belong to different package. Please look into the following blogpost: https://medium.com/@robiplus/golang-trick-export-for-test-aa16cbd7b8cd to see why this trick is needed. |
|
Inc type is a trick to get golint to work for the ParseMessage defined below... |
|
DeserializeMessage returns the result of the private MessageProcessor.DeserializeMessage method |
|
ParseMessage returns the result of the private MessageProcessor.parseMessage method |
|
ParseMessage returns the result of the private parseReportContent function |
|