• 大小: 1.79KB
    文件类型: .cs
    金币: 1
    下载: 0 次
    发布日期: 2020-12-25
  • 语言: C#
  • 标签: C#  单元测试  

资源简介

C# 单元测试 各个方法执行顺序例子

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using Microsoft.VisualStudio.TestTools.UnitTesting;

namespace P2P.Tests
{
    [TestClass()]
    public sealed class DivideClassTest
    {
        [AssemblyInitialize()]
        public static void AssemblyInit(TestContext context)
        {
            //配置log4net
            var path = AppDomain.CurrentDomain.baseDirectory + (“\\log4net.config“);
            System.IO.FileInfo file = new System.IO.FileInfo(path);
            log4net.Config.xmlConfigurator.ConfigureAndWatch(file);

            //MessageBox.Show(“AssemblyInit “ + context.TestName);
        }

        [ClassInitialize()]
        public static void ClassInit(T

评论

共有 条评论