12345678910111213141516171819 |
- using Microsoft.VisualStudio.TestTools.UnitTesting;
- using Examen31P_LebedevaAF;
- namespace UnitTestProject1
- {
- [TestClass]
- public class UnitTest1
- {
- [TestMethod]
- public void TestMethod1()
- {
- int expept = 4000;
- Brak b = new Brak();
- int actual = b.Dlina();
- Assert.AreEqual(expept, actual);
- }
- }
- }
|