This commit is contained in:
邹宗楠
2022-09-20 16:25:46 +08:00
parent c7cfd615cb
commit cc6a1c5c1e
14 changed files with 393 additions and 62 deletions

View File

@@ -1,6 +1,7 @@
package mtpsapi
import (
"fmt"
"testing"
"git.rosy.net.cn/baseapi/utils"
@@ -82,3 +83,9 @@ func TestSimulateReportException(t *testing.T) {
err := api.SimulateReportException(123456789, "1529387562097059")
handleError(t, err)
}
func TestName(t *testing.T) {
cc := 1
cc |= 1 | 2
fmt.Println(cc)
}