You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-zero/core/mathx/entropy_test.go

18 lines
272 B
Go

4 years ago
package mathx
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestCalcEntropy(t *testing.T) {
const total = 1000
const count = 100
m := make(map[any]int, total)
4 years ago
for i := 0; i < total; i++ {
m[i] = count
}
assert.True(t, CalcEntropy(m) > .99)
4 years ago
}