UnitTest1.cs 640 B

1234567891011121314151617181920
  1. using Microsoft.VisualStudio.TestTools.UnitTesting;
  2. namespace UnitTestProject1
  3. {
  4. [TestClass]
  5. public class UnitTest1
  6. {
  7. [TestMethod]
  8. public void TestMethod1() // юнит тест который должен проверять ввод
  9. {
  10. Reading a = new Reading();
  11. a.Reading();
  12. Assert.Are [TestMethod]
  13. public void TestMethod2()
  14. {
  15. Reading a = new matrix();
  16. a.Reading();
  17. Assert.IsNotNull(a.matrix()); // юнит тест который должен проверять пустоту ввода
  18. }
  19. }
  20. }