示例#1
0
        public void say()
        {
            Console.Write("\n    Production code - TestedLib");
            TestedLibDependency tld = new TestedLibDependency();

            tld.sayHi();
        }
示例#2
0
        public bool say()
        {
            int a = 5, b = 6, c = 11;
            int sum = 0;

            sum = a + b;
            if (sum == c)
            {
                return(true);
            }
            else
            {
                return(false);
            }


            Console.Write("\n    Production code - TestedLib");
            TestedLibDependency tld = new TestedLibDependency();

            tld.sayHi();
        }