(t *testing.T)
| 156 | } |
| 157 | |
| 158 | func TestWrappedRecordCosineWithIncompatibleSizes(t *testing.T) { |
| 159 | assertPanic(t, "cosine similarity should panic with vectors of different sizes", func() { |
| 160 | WrapRecord(&testRecord).Cosine(WrapRecord(&testShorterRecord)) |
| 161 | }) |
| 162 | } |
nothing calls this directly
no test coverage detected