我有以下代码:
var gen = from x in Arb.Generate<int>()
from int y in Gen.Choose(5, 10)
where x > 5
select new tuple { Fst = x, Snd = y };
我可以跑
Prop.ForAll<tuple>(c =>
Console.WriteLine($"{c.Fst}, {c.Snd}")
).Check(Configuration.Default);
我看到了构造生成器和定义属性的所有方法。
但我只是没有足够快地找到如何一起使用它们。