UnitTestPruf.cs 299 B

12345678910111213141516
  1. using Microsoft.VisualStudio.TestTools.UnitTesting;
  2. using System;
  3. namespace UnitTestProject1
  4. {
  5. [TestClass]
  6. public class UnitTestPruf
  7. {
  8. [TestMethod]
  9. public void ProverkaOtveta()
  10. {
  11. int[] kod = { 1, 1, 3, 3, 5, 3, 7 };
  12. }
  13. }
  14. }