(t *testing.T)
| 16 | } |
| 17 | |
| 18 | func TestInequalRecordCountsInequal(t *testing.T) { |
| 19 | if CheckQRecordEquality(t, |
| 20 | []types.QValue{types.QValueNull(types.QValueKindString), types.QValueNull(types.QValueKindString)}, |
| 21 | []types.QValue{types.QValueNull(types.QValueKindString)}, |
| 22 | ) { |
| 23 | t.Error("2 records should not be equal to 1 record") |
| 24 | } |
| 25 | } |
| 26 | |
| 27 | func TestInequalRecordSchemasInequal(t *testing.T) { |
| 28 | if CheckEqualRecordBatches(t, |
nothing calls this directly
no test coverage detected