Add new algorithm

This commit is contained in:
Zoltan Papp
2025-06-14 02:25:05 +02:00
parent d24d8328f9
commit 93d8d272bf
5 changed files with 356 additions and 49 deletions

View File

@@ -0,0 +1,17 @@
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) {
}