XUnit类夹具(IClassFixture)被执行两次

时间:2019-10-22 13:45:06

标签: c# selenium-webdriver xunit xunit.net xunit2

文本修复和测试

public class TestFixture : IDisposable
{
    public TestFixture()
    {
        var options = new ChromeOptions();
        options.AddExcludedArgument("enable-automation");
        options.AddAdditionalCapability("useAutomationExtension", true);
        WebDriver.Init("https://localhost:44335/", Browser.Chrome, options);
        WebDriver.GetDriver.Manage().Window.Maximize();
    }

    public void Dispose()
    {
        WebDriver.Close();
    }
}

public abstract class Test : IClassFixture<TestFixture>
{

}

AuthTest

public abstract class AuthTest : Test
{
    [Fact, Priority(-1)]
    public void LoginTest()
    {
        var home = GetPage<HomePage>();
        home.LoginModal.Open();
        home.LoginModal.EnterLoginText(new Login("user", "pw"));
        home.LoginModal.Login();
        GetPage<DashboardPage>().IsAt();
    }
}

家庭测试

[TestCaseOrderer(PriorityOrderer.Name, PriorityOrderer.Assembly)]
public sealed class HomeTest : AuthTest
{

}

ProfileTest

 [TestCaseOrderer(PriorityOrderer.Name, PriorityOrderer.Assembly)]
 public sealed class ProfileTest : AuthTest
 {
     [Fact, Priority(0)]
     public void OpenProfilePageTest()
     {
         var profile = GetPage<ProfilePage>();
         profile.GoTo();
         profile.IsAt();
     }
     [Fact, Priority(1)]
     public void LogoutTest() => GetPage<DashboardPage>().Logout();

 }

几天前,我编写了这段代码,它用来创建1个浏览器实例。我今天再次开始该项目,现在突然执行了两次夹具,并打开了两个单独的浏览器(这导致我的测试失败)。我以为IClassFixture应该只执行一次,就像NUnit中的[OneTimeSetUp]属性一样。为什么我的灯具执行两次?

当我运行所有测试(所有测试运行ProfileTestHomeTest)时,会发生这种情况。例如,如果我分别运行两个测试之一,那么只有一个浏览器实例打开并且测试通过。

我正在使用XUnit 2.4.0。

-编辑-

当我使用时:

VS 2019(运行所有测试):它同时打开2个浏览器,但失败。

VS 2019(调试所有测试):它同时打开2个浏览器,但失败。

Jetbrain的Rider IDE(运行所有测试):它同时打开2个浏览器,但失败。

Jetbrain的Rider IDE(调试所有测试):它打开1个浏览器,直到HomeTest完成,然后打开另一个浏览器,运行ProfileTest,两个测试均通过(包括LoginTest)。

最后这是它应该如何工作的,当我以前使用NUnit时,它曾经是这样的。

1 个答案:

答案 0 :(得分:1)

来自https://xunit.net/docs/shared-context#class-fixture

  

您可以使用xUnit.net的类固定装置功能来共享一个   对象实例在测试类中的所有测试中

在测试课程中注意

如果您有两个单独的类HomeTestProfileTest,则无论它们都是从同一个抽象类派生而来,xUnit都会将它们视为两个不同的测试类。

考虑改用Collection Fixtures
https://xunit.net/docs/shared-context#collection-fixture

  

您可以使用xUnit.net的collection夹具功能来共享   单个对象实例多个测试类中的测试