(t *testing.T)
| 123 | } |
| 124 | |
| 125 | func TestWrappedRecordMagnitudeWithNull(t *testing.T) { |
| 126 | assertPanic(t, "magnitude product should panic with null wrapped record", func() { |
| 127 | _ = WrapRecord(nil).Magnitude() |
| 128 | }) |
| 129 | } |
| 130 | |
| 131 | func TestWrappedRecordCosine(t *testing.T) { |
| 132 | a := WrapRecord(&pb.Record{Data: []float32{3, 6, 9}}) |
nothing calls this directly
no test coverage detected