Created test skeleton for sorted set test suite

This commit is contained in:
Kelvin Clement Mwinuka
2024-02-18 22:56:10 +08:00
parent 69d558e37c
commit a84d1b4d31

View File

@@ -1 +1,51 @@
package sorted_set
import (
"testing"
)
func Test_HandleZADD(t *testing.T) {}
func Test_HandleZCARD(t *testing.T) {}
func Test_HandleZCOUNT(t *testing.T) {}
func Test_HandleZLEXCOUNT(t *testing.T) {}
func Test_HandleZDIFF(t *testing.T) {}
func Test_HandleZDIFFSTORE(t *testing.T) {}
func Test_HandleZINCRBY(t *testing.T) {}
func Test_HandleZINTER(t *testing.T) {}
func Test_HandleZINTERSTORE(t *testing.T) {}
func Test_HandleZMPOP(t *testing.T) {}
func Test_HandleZPOP(t *testing.T) {}
func Test_HandleZMSCORE(t *testing.T) {}
func Test_HandleZRANDMEMBER(t *testing.T) {}
func Test_HandleZRANK(t *testing.T) {}
func Test_HandleZREM(t *testing.T) {}
func Test_HandleZSCORE(t *testing.T) {}
func Test_HandleZREMRANGEBYSCORE(t *testing.T) {}
func Test_HandleZREMRANGEBYRANK(t *testing.T) {}
func Test_HandleZREMRANGEBYLEX(t *testing.T) {}
func Test_HandleZRANGE(t *testing.T) {}
func Test_HandleZRANGESTORE(t *testing.T) {}
func Test_HandleZUNION(t *testing.T) {}
func Test_HandleZUNIONSTORE(t *testing.T) {}