如何使用 c# Fitnesse+Slim 在 Fitnesse 测试中保持状态

发布于 2024-10-15 15:57:34 字数 76 浏览 2 评论 0原文

如何指定每个测试用例中使用的数据?

即我希望使用一个表来设置一些数据,然后针对该数据运行一系列测试。

谢谢

How do I specify data to be used in each of my test cases?

i.e. I wish to use one table to setup some data and then run a bunch of tests against that data.

Thanks

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

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

发布评论

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

评论(1

讽刺将军 2024-10-22 15:57:34

我一直在查看 Gojko ,他们的建议是创建一个您在以下位置调用的单例测试页的开头。下面是 FitNesse 编辑的一个示例:

!|import         |
|Demo1.Containers|
|Demo1.Fixtures  |

!|SUT         |
|Get Practice?|
|$practice=   |

我的 C# 代码(SUT -> 被测系统是一个基本的单例:

public class SUT
{
    private static Practice _practice = null;
    public static Practice getPractice()
    {
        if (_practice == null)
        {
            _practice = new Practice();
        }
        return _practice;
    }
}

我正在测试的其他类使用该单例来获取数据。

    public class AddDoctorToPractice
    {
        private Practice practice = SUT.getPractice();
        ...

我希望有所帮助。

I've been looking at Gojko and their suggestion is to create a singleton that you invoke at the beginning of your test page. Here's an example of the FitNesse edit:

!|import         |
|Demo1.Containers|
|Demo1.Fixtures  |

!|SUT         |
|Get Practice?|
|$practice=   |

And my C# code (SUT -> System Under Test is a basic Singleton:

public class SUT
{
    private static Practice _practice = null;
    public static Practice getPractice()
    {
        if (_practice == null)
        {
            _practice = new Practice();
        }
        return _practice;
    }
}

My other classes that I'm testing use that singleton to get their data.

    public class AddDoctorToPractice
    {
        private Practice practice = SUT.getPractice();
        ...

I hope that helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文