diff --git a/agent-go/status/Status_test.go b/agent-go/status/Status_test.go new file mode 100644 index 0000000..b041447 --- /dev/null +++ b/agent-go/status/Status_test.go @@ -0,0 +1,19 @@ +package status + +import ( + "encoding/json" + "fmt" + "testing" +) + +func TestReportAppStatus(t *testing.T) { + + agentStatus := ReportAppStatus() + + marshal, err := json.Marshal(agentStatus) + if err != nil { + return + } + + fmt.Printf(string(marshal)) +}