📜  所有测试后的 nunit 清理 - C# 代码示例

📅  最后修改于: 2022-03-11 14:48:38.110000             🧑  作者: Mango

代码示例1
// NUNIT 3.x
namespace MyNamespace.Tests
{
    using System;
    using NUnit.Framework;

    [SetUpFixture]
    public class TestsSetupClass
    {
        [OneTimeSetUp]
        public void GlobalSetup()
        {
            // Do login here.
        }

        [OneTimeTearDown]
        public void GlobalTeardown()
        {
            // Do logout here
        }
    }
}