using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;

namespace UnitTestProject1
{
    [TestClass]
    public class UnitTest1
    {
        [TestMethod]
        public void TestMethod1()
        {

            Assert.AreEqual(0,0);
        }


        [TestMethod]
        public void TestMethod2()
        {

            Assert.Equals(0, 0);
        }
    }
}

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-05-17
  • 2022-12-23
  • 2021-01-20
  • 2022-12-23
  • 2021-05-04
猜你喜欢
  • 2021-08-27
  • 2021-12-05
  • 2021-07-07
  • 2021-12-04
  • 2021-05-07
  • 2022-12-23
相关资源
相似解决方案