Пример #1
0
        public void Test6(PocoWrapper <TestClass> a, int b)
        {
            var payload = a?.Payload;
            var result  = new CodeToTest().FunctionToTest6(payload, b);

            Assert.InRange(result, int.MinValue, int.MaxValue);
        }
Пример #2
0
        public void Test5(DegreesOfCertainty c)
        {
            var result = new CodeToTest().FunctionToTest5(c);

            Assert.InRange(result, int.MinValue, int.MaxValue);
        }
Пример #3
0
        public void Test3(Guid a, float b, decimal c)
        {
            var result = new CodeToTest().FunctionToTest3(a, b, c);

            Assert.InRange(result, int.MinValue, int.MaxValue);
        }
Пример #4
0
        public void Test4(Guid a, float b, DegreesOfCertainty c)
        {
            var result = new CodeToTest().FunctionToTest4(a, b, c);

            Assert.InRange(result, int.MinValue, int.MaxValue);
        }
Пример #5
0
        public void Test1(int a, int b, int c)
        {
            var result = new CodeToTest().FunctionToTest1(a, b, c);

            Assert.InRange(result, int.MinValue, int.MaxValue);
        }