UnitTest1.cs 603 B

12345678910111213141516171819202122232425
  1. using Microsoft.VisualStudio.TestTools.UnitTesting;
  2. using System;
  3. namespace Pruf
  4. {
  5. [TestClass]
  6. public class UnitTest1
  7. {
  8. [TestMethod]
  9. public void TestMethod1_TransportTableIsTable()
  10. {
  11. var type = typeof(int[,]);
  12. var value = Program.;
  13. Assert.IsInstanceOfType(value, type);
  14. }
  15. [TestMethod]
  16. public void TestMethod2_CheckAllElementsWorkCorrcet()
  17. {
  18. int[,] value = Pr.transportTable;
  19. bool result = Pr.CheckAllElments(value);
  20. Assert.IsFalse(result);
  21. }
  22. }
  23. }