转移订单

This commit is contained in:
邹宗楠
2022-04-18 16:09:19 +08:00
parent e0b197a92c
commit 2819c7e0eb

View File

@@ -136,3 +136,12 @@ func TestCheckOrder(t *testing.T) {
//}
fmt.Println(IsOpen(err))
}
func TestNumber(t *testing.T) {
fmt.Println("1", -2&4 != 0)
fmt.Println("2", 0&4 != 0)
fmt.Println("3", 1&4 != 0)
fmt.Println("4", 2&4 != 0)
fmt.Println("5", 4&4 != 0)
fmt.Println("6", 5&4 != 0)
}