mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-21 01:36:46 +00:00
18 lines
219 B
Go
18 lines
219 B
Go
package inalt
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
)
|
|
|
|
func init() {
|
|
// Override the ticker factory for testing
|
|
newTicker = func(d time.Duration) Ticker {
|
|
return newFakeTicker(d)
|
|
}
|
|
}
|
|
|
|
func TestNewManager(t *testing.T) {
|
|
|
|
}
|