1 Star 2 Fork 2

小桀/fate

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
session_wuge_test.go 1.12 KB
一键复制 编辑 原始数据 按行查看 历史
godcong 提交于 2023-03-13 22:24 . feat(fate): change for v4
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)
}
})
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/tangri/fate.git
git@gitee.com:tangri/fate.git
tangri
fate
fate
main

搜索帮助