123456789101112131415161718192021 |
- using Microsoft.VisualStudio.TestTools.UnitTesting;
- using System;
- using Trif_Petun;
- namespace Test
- {
- [TestClass]
- public class UnitTest1
- {
- [TestMethod]
- public void rpoverka_zapolnenie()
- {
- string log = "";
- string pass = "";
- bool ex = false;
- Avtomat tm = new Avtomat();
- bool act = tm.isFormVaid(log, pass);
- Assert.AreEqual(ex, act);
- }
- }
- }
|