mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-23 17:20:24 +08:00
8403ed16ae
* ci: add Lint check on commits * ci: fix Lint script error * test: fix go vet errors * test: fix go vet errors, remove gofumpt to check go vet * test: fix go vet errors, try gofumpt * test: fix go vet errors, try gofumpt, round 1 * test: fix go vet errors, try gofumpt, round 2 * ci: fix Lint errors
24 lines
340 B
Go
24 lines
340 B
Go
//go:build linux
|
|
// +build linux
|
|
|
|
package stat
|
|
|
|
import (
|
|
"strconv"
|
|
"sync/atomic"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestReport(t *testing.T) {
|
|
var count int32
|
|
SetReporter(func(s string) {
|
|
atomic.AddInt32(&count, 1)
|
|
})
|
|
for i := 0; i < 10; i++ {
|
|
Report(strconv.Itoa(i))
|
|
}
|
|
assert.Equal(t, int32(1), count)
|
|
}
|