mirror of
https://github.com/jech/galene.git
synced 2024-11-10 02:35:58 +01:00
22 lines
338 B
Go
22 lines
338 B
Go
|
package estimator
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
func TestEstimator(t *testing.T) {
|
||
|
now := time.Now()
|
||
|
e := New(time.Second)
|
||
|
|
||
|
e.estimate(now)
|
||
|
e.Add(42)
|
||
|
e.Add(128)
|
||
|
e.estimate(now.Add(time.Second))
|
||
|
rate := e.estimate(now.Add(time.Second + time.Millisecond))
|
||
|
|
||
|
if rate != 42+128 {
|
||
|
t.Errorf("Expected %v, got %v", 42+128, rate)
|
||
|
}
|
||
|
}
|