Files
EdgeAPI/internal/db/models/http_firewall_rule_group_dao_test.go
2021-01-17 16:48:00 +08:00

18 lines
369 B
Go

package models
import (
_ "github.com/go-sql-driver/mysql"
"github.com/iwind/TeaGo/dbs"
"testing"
)
func TestHTTPFirewallRuleGroupDAO_FindRuleGroupIdWithRuleSetId(t *testing.T) {
dbs.NotifyReady()
var tx *dbs.Tx
groupId, err := SharedHTTPFirewallRuleGroupDAO.FindRuleGroupIdWithRuleSetId(tx, 22)
if err != nil {
t.Fatal(err)
}
t.Log("groupId:", groupId)
}