码迷,mamicode.com
首页 > 其他好文 > 详细

Nuint-测试执行逻辑

时间:2017-07-20 01:00:30      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:pac   sof   setup   unit   nbsp   testing   down   方法   str   

Nuint-

using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using NUnit.Framework;
namespace NC_Test._002Nc_Alac
{
    [TestFixture]
    public class Alac_Test01
    {
        String sIP = "192.168.1.1";

        [TestMethod]
        public void TestMethod1()
        {
            Console.WriteLine(111);
        }
        [TestFixtureSetUp]
        public void Teststat()
        {
            Console.WriteLine("(初始化)方法TestFixtureSetUp");
        }
        [SetUp]
        public void TestSetup()
        {
            Console.WriteLine("每次执行方法SetUp");
        }
    
        [Test]
        public void Channe()
        {

            Console.WriteLine("ip={0}", sIP);

            NUnit.Framework.Assert.AreEqual(2, 2);
            NUnit.Framework.Assert.AreEqual(1, 2);
        }
        [Test]
        public void Channe2()
        {

            Console.WriteLine("ip={0}", sIP);

            NUnit.Framework.Assert.AreEqual(2, 2);
            NUnit.Framework.Assert.AreEqual(1, 2);
        }
       [TearDown]
        public void jsRepat()
        {
            Console.WriteLine("结束运行TearDown");

        }
        [TestFixtureTearDown]
        public void js()
        {
            Console.WriteLine("结束运行TestFixtureTearDown");

        }
    }
}

执行结果

(初始化)方法TestFixtureSetUp
***** NC_Test._002Nc_Alac.Alac_Test01.Channe
每次执行方法SetUp
ip=192.168.1.1
结束运行TearDown
***** NC_Test._002Nc_Alac.Alac_Test01.Channe2
每次执行方法SetUp
ip=192.168.1.1
结束运行TearDown
结束运行TestFixtureTearDown

 

Nuint-测试执行逻辑

标签:pac   sof   setup   unit   nbsp   testing   down   方法   str   

原文地址:http://www.cnblogs.com/hs22/p/7208616.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!