如何在 pex 中将 GUID 作为 Pex 参数传递

发布于 2024-12-26 02:30:39 字数 45 浏览 0 评论 0原文

如何使用 PexArgument 属性将 GUID 作为 Pex 参数传递?

How I can pass GUID as a Pex argument using PexArgument attribute?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

葮薆情 2025-01-02 02:30:39

你不能。来自 MSDN 属性教程

属性参数仅限于常量值
以下类型:

  • 简单类型(bool、byte、char、short、int、long、float 和 double)
  • 字符串
  • 系统.类型
  • 枚举
  • object(对象类型的属性参数的参数必须是上述类型之一的常量值。)
  • 上述任何类型的一维数组

您只需从生成的 PexMethod 中删除 Guid 参数并硬连线该值:

[PexMethod]
public string MyFunction()
{
    Guid guid = Guid.Parse("394865F4-94AB-4B06-B00D-F66CD2CECE7D");
    string result = MyClass.MyFunction(guid);
    return result;
    // TODO: add assertions to method MyClass_Test.MyFunction(Guid)
}

You cannot. From the MSDN attributes tutorial

Attribute parameters are restricted to constant values of the
following types:

  • Simple types (bool, byte, char, short, int, long, float, and double)
  • string
  • System.Type
  • enums
  • object (The argument to an attribute parameter of type object must be a constant value of one of the above types.)
  • One-dimensional arrays of any of the above types

You could just remove the Guid parameter from the generated PexMethod and hardwire the value:

[PexMethod]
public string MyFunction()
{
    Guid guid = Guid.Parse("394865F4-94AB-4B06-B00D-F66CD2CECE7D");
    string result = MyClass.MyFunction(guid);
    return result;
    // TODO: add assertions to method MyClass_Test.MyFunction(Guid)
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文