mirror of
https://github.com/safing/portmaster
synced 2025-09-02 02:29:12 +00:00
13 lines
254 B
Go
13 lines
254 B
Go
package token
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/safing/portbase/modules"
|
|
"github.com/safing/portmaster/service/core/pmtesting"
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
module := modules.Register("token", nil, nil, nil, "rng")
|
|
pmtesting.TestMain(m, module)
|
|
}
|