删除打印

This commit is contained in:
邹宗楠
2022-04-20 18:22:24 +08:00
parent 297803c62c
commit 56ef57fae5

View File

@@ -195,17 +195,3 @@ func TestDataUnmas(t *testing.T) {
fmt.Println("retsult", retsult.CallbackBusinessType)
fmt.Println("retsult", retsult.Param.PartnerOrderCode)
}
func TestDaDa(t *testing.T) {
fmt.Println("美团", 1&1)
fmt.Println("达达", 2&1)
fmt.Println("蜂鸟", 4&1)
fmt.Println("美团", 1&0)
fmt.Println("达达", 2&0)
fmt.Println("蜂鸟", 4&0)
fmt.Println("蜂鸟", 19&16 != 0)
fmt.Println("蜂鸟", 23&16 != 0)
fmt.Println("蜂鸟", 21&16 != 0)
fmt.Println("蜂鸟", 11&16 != 0)
}