UnitTest1.cs 333 B

12345678910111213141516171819202122
  1. using Microsoft.VisualStudio.TestTools.UnitTesting;
  2. using System;
  3. using MyApp;
  4. namespace TestProject
  5. {
  6. [TestClass]
  7. public class UnitTest1
  8. {
  9. [TestMethod]
  10. public void TestDefect()
  11. {
  12. }
  13. [TestMethod]
  14. public void TestWeight()
  15. {
  16. }
  17. }
  18. }