(t *testing.T)
| 75 | } |
| 76 | |
| 77 | func TestWrappedRecordMetaWithInvalidKey(t *testing.T) { |
| 78 | r := WrapRecord(&testRecord) |
| 79 | if got := r.Meta("i do not exist"); got != "" { |
| 80 | t.Fatalf("expecting empty value, got '%s'", got) |
| 81 | } |
| 82 | } |
| 83 | |
| 84 | func TestWrappedRecordDot(t *testing.T) { |
| 85 | testRecord.Data = []float32{3, 6, 9} |
nothing calls this directly
no test coverage detected