bitfield/gmachine/calc_test.go

16 lines
186 B
Go
Raw Normal View History

2022-02-23 01:31:53 +01:00
package gmachine
import "testing"
func TestCalc(t *testing.T) {
t.Parallel()
var wants uint64 = 1
got := Calc()
if wants != got {
t.Errorf("want %d, got %d", wants, got)
}
}