示例#1
0
        public void arenotsame1()
        {
            tests.tests F = new tests.tests();
            tests.tests R = new tests.tests();


            Assert.AreNotSame(F, R);
        }
示例#2
0
        public void aresame1()
        {
            tests.tests F = new tests.tests();
            tests.tests R = new tests.tests();
            R = F;

            Assert.AreSame(F, R);
        }
示例#3
0
        public void IsnotInstanceOfType1()
        {
            int rofl = 5;

            tests.tests F = new tests.tests();

            Assert.IsNotInstanceOfType(F.Maki(rofl), typeof(double));
        }
示例#4
0
        public void IsInstanceOfType1()
        {
            int rofl = 5;

            tests.tests F = new tests.tests();

            Assert.IsInstanceOfType(F.Maki(rofl), typeof(int));
        }
示例#5
0
        public void isfalse1()
        {
            bool Maki = false;

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

            Assert.IsFalse(Maki);
        }
示例#6
0
        public void istrue1()
        {
            bool Maki = true;

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

            Assert.IsTrue(Maki);
        }
示例#7
0
        public void isnull1()
        {
            string kek = null;

            tests.tests F = new tests.tests();
            string      a = F.uwu(kek);

            Assert.IsNull(a);
        }
示例#8
0
        public void equal1()
        {
            double x   = -1;
            double a   = 1;
            double b   = 2;
            double c   = 2;
            double exp = 3;

            tests.tests F   = new tests.tests();
            double      act = F.equal(x, a, b, c);

            Assert.AreEqual(exp, act);
        }
示例#9
0
        public void isnotnull1()
        {
            tests.tests F = new tests.tests();

            Assert.IsNotNull(F);
        }