123456789101112131415161718 |
- package main
- import (
- "github.com/gogf/gf/v2/os/gctx"
- "log"
- "testing"
- )
- func TestGetAccessToken(t *testing.T) {
- log.Println(getAccessToken(gctx.New()))
- }
- func TestAddMaterial(t *testing.T) {
- addMaterial()
- }
- func TestAddDraft(t *testing.T) {
- addDraft(0, 0)
- }
|