forked from rcrowley/go-metrics
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcounter_test.go
51 lines (44 loc) · 954 Bytes
/
counter_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package metrics
import "testing"
func TestCounterZero(t *testing.T) {
c := NewCounter()
if count := c.Count(); 0 != count {
t.Errorf("c.Count(): 0 != %v\n", count)
}
}
func TestCounterInc1(t *testing.T) {
c := NewCounter()
c.Inc(1)
if count := c.Count(); 1 != count {
t.Errorf("c.Count(): 1 != %v\n", count)
}
}
func TestCounterInc12(t *testing.T) {
c := NewCounter()
c.Inc(12)
if count := c.Count(); 12 != count {
t.Errorf("c.Count(): 12 != %v\n", count)
}
}
func TestCounterDec1(t *testing.T) {
c := NewCounter()
c.Dec(1)
if count := c.Count(); -1 != count {
t.Errorf("c.Count(): -1 != %v\n", count)
}
}
func TestCounterDec12(t *testing.T) {
c := NewCounter()
c.Dec(12)
if count := c.Count(); -12 != count {
t.Errorf("c.Count(): -12 != %v\n", count)
}
}
func TestCounterClear(t *testing.T) {
c := NewCounter()
c.Inc(3)
c.Clear()
if count := c.Count(); 0 != count {
t.Errorf("c.Count(): 0 != %v\n", count)
}
}