This commit is contained in:
邹宗楠
2025-12-24 15:14:45 +08:00
parent df7bbc71a8
commit 7213c0470c
2 changed files with 16 additions and 6 deletions

View File

@@ -1,6 +1,7 @@
package jxprintapi
import (
"fmt"
"git.rosy.net.cn/baseapi"
"go.uber.org/zap"
"testing"
@@ -109,5 +110,8 @@ func TestDoPrint(t *testing.T) {
}
func TestGetPrintList(t *testing.T) {
api.GetPrintList("", "", -9, -9, 0, 30)
list, count, err := api.GetPrintList("", "", -9, -9, 0, 10)
fmt.Println(list)
fmt.Println(count)
fmt.Println(err)
}