代码拉取完成,页面将自动刷新
package fate_test
import (
"fmt"
"log"
"testing"
"github.com/babyname/fate"
"github.com/babyname/fate/model"
)
// TestWuGe_WaiGe ...
func TestWuGe_WaiGe(t *testing.T) {
l1, l2, f1, f2 := 1, 1, 1, 1
for i := 0; i < 80000; i++ {
if f2 >= model.WuGeLuckyMax {
f1++
f2 = 1
}
if f1 >= model.WuGeLuckyMax {
l2++
f1 = 1
}
if l2 >= model.WuGeLuckyMax {
l1++
l2 = 1
}
wg := fate.CalcWuGe(l1, l2, f1, f2)
sum := l1 + l2 + f1 + f2
if wg.ZongGe() != sum {
log.Println(wg.ZongGe() == sum, l1, l2, f1, f2, wg.ZongGe())
}
//fmt.Println("result:", wg.Check())
f2++
}
}
func TestWuGeID(t *testing.T) {
type args struct {
l1 int
l2 int
f1 int
f2 int
}
tests := []struct {
name string
args args
want int
}{
{
name: "",
args: args{
l1: 0x2,
l2: 0x4,
f1: 0x8,
f2: 0x16,
},
want: 0x02040816,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := model.WuGeLuckyID(tt.args.l1, tt.args.l2, tt.args.f1, tt.args.f2)
fmt.Printf("got %x\n", got)
if got != tt.want {
t.Errorf("WuGeID() = %v, nowant %v", got, tt.want)
}
})
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。