(t *testing.T)
| 99 | } |
| 100 | |
| 101 | func TestSetOperation(t *testing.T) { |
| 102 | db := getTestConn() |
| 103 | testUnion(db, t) |
| 104 | testInter(db, t) |
| 105 | testDiff(db, t) |
| 106 | } |
| 107 | |
| 108 | func testUnion(db *redis.Client, t *testing.T) { |
| 109 | ctx := context.Background() |
nothing calls this directly
no test coverage detected