1234567891011121314151617181920212223242526 |
- using Examen31P_LebedevaAF;
- namespace TestProject2
- {
- [TestClass]
- public class UnitTest1
- {
- [TestMethod]
- public void TestMethod1()
- {
- int expept = 4000;
- Brak b = new Brak();
- int actual = b.Dlina();
- Assert.AreEqual(expept, actual);
- }
- [TestMethod]
- public void TestMethod2()
- {
- int expept = 40;
- Brak b = new Brak();
- int actual = b.Dlina();
- Assert.AreEqual(expept, actual);
- }
- }
- }
|