From 7d080421a5641afeb4e6d8b808b4ca2f5924a5af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E5=AE=97=E6=A5=A0?= Date: Wed, 13 Jul 2022 16:22:15 +0800 Subject: [PATCH] 1 --- platformapi/fnpsapi/fn_test.go | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/platformapi/fnpsapi/fn_test.go b/platformapi/fnpsapi/fn_test.go index 4cc61899..ce2d8ccb 100644 --- a/platformapi/fnpsapi/fn_test.go +++ b/platformapi/fnpsapi/fn_test.go @@ -201,3 +201,12 @@ func TestDataUnmas(t *testing.T) { func TestErr2CallbackResponse(t *testing.T) { fmt.Println(fmt.Sprintf("%05d", rand.Intn(1000000))) } + +func Test11(t *testing.T) { + fmt.Println(57&2 != 0) + fmt.Println(10&2 != 0) + fmt.Println(32&2 != 0) + fmt.Println(8&2 != 0) + fmt.Println(59&2 != 0) + fmt.Println(0&2 != 0) +}