Exemple #1
0
        public void isfalse1()
        {
            bool Maki = false;

            tests.tests F   = new tests.tests();
            bool        act = F.owo(Maki);

            Assert.IsFalse(Maki);
        }
Exemple #2
0
        public void istrue1()
        {
            bool Maki = true;

            tests.tests F   = new tests.tests();
            bool        act = F.owo(Maki);

            Assert.IsTrue(Maki);
        }