vs2013c#测试using System; using System.Collections.Generic; using System.Linq; using System.Text; usin

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vs2013c#测试using System; using System.Collections.Generic; using System.Linq; using System.Text; usin相关的知识,希望对你有一定的参考价值。

首先安装Unit Test Generator。
方法为:工具->扩展和更新->联机->搜索“图标为装有蓝色液体的小试管。技术分享Unit Test 技术分享Generator”,

编写代码,生成一个新的类,编写构造函数 与 add()函数。代码如下。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApplication1_CXY
{
    class Program
    {
        static void Main(string[] args)
        {
        }
    }
    public class test
    {
        public test(){

        }
        public int add(int a,int b)
        {
            return a + b;
        }
    }
}

在addTest()函数里编写测试代码,代码如下。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ConsoleApplication1_CXY;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace ConsoleApplication1_CXY.Tests
{
    [TestClass()]
    public class testTests
    {
        [TestMethod()]
        public void addTest()
        {
            int a=2,b=5,expect=7;
            test t = new test();
            int real = t.add(a,b);

            Assert.AreEqual(real,expect);
            //Assert.Fail();
        }
    }
}
测试结果如图所示:

技术分享

如此就完成了一个简单的c#测试。

以上是关于vs2013c#测试using System; using System.Collections.Generic; using System.Linq; using System.Text; usin的主要内容,如果未能解决你的问题,请参考以下文章

vs2015连接oracle 11g(.net自带方式 using System.Data.OracleClient;)

如何使用VS2013编写C语言? 包括编译连接和运行测试.

C语言使用vs2013进行编辑

vs2013安装及测试

当在C#中使用System指令时,找不到类型或名称空间名称'Text'

C++11 线程与异步性能(VS2013)