在Xunit中使用FsCheck (2)

最后还要将自定义的Arbitrary注册在FsCheck中:

public class MyGenerators { public static Arbitrary<User> User() { return new UserArbitrary(); } } Arb.Register<MyGenerators>();

写个例子试试:

[Property] public bool GenerateUsers(User user) { return user.Name != string.Empty; }

所以代码实例均可以在https://github.com/twzhangyang/FsCheck.Practice下载

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zygpsd.html