UnitTest1.cs 391 B

12345678910111213141516171819
  1. using Microsoft.VisualStudio.TestTools.UnitTesting;
  2. using Examen31P_LebedevaAF;
  3. namespace UnitTestProject1
  4. {
  5. [TestClass]
  6. public class UnitTest1
  7. {
  8. [TestMethod]
  9. public void TestMethod1()
  10. {
  11. int expept = 4000;
  12. Brak b = new Brak();
  13. int actual = b.Dlina();
  14. Assert.AreEqual(expept, actual);
  15. }
  16. }
  17. }