package sync import ( "testing" "time" "github.com/stretchr/testify/assert" ) func TestOfflineDetector_ConstantValues(t *testing.T) { assert.Equal(t, 5*time.Minute, OnlineThreshold) assert.Equal(t, 2*time.Minute, OfflineCheckInterval) }