12 lines
202 B
Go
12 lines
202 B
Go
package cms
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestCheckSkuDiffBetweenJxAndVendor(t *testing.T) {
|
|
vendorIDList := []int{}
|
|
storeIDList := []int{}
|
|
CheckSkuDiffBetweenJxAndVendor(vendorIDList, storeIDList)
|
|
}
|