Rider 中C#单元测试

使用NUnit.Framework这个包,没有的话可以用nuget去搜索下载。简单的进行单元测试,想要单元测试好像还给需要static函数,慢慢学学C#


using System;
using NUnit.Framework;

namespace client
{
    public class test
    {
        [Test]
        public static void test1()
        {
            Console.WriteLine("hello test");
            test2();
        }

        public static void test2()
        {
            Console.WriteLine("hello testf");
        }
    }
}

Rider 中C#单元测试_第1张图片

你可能感兴趣的:(C#,c#,单元测试)