Example #1
0
        public CompareBLL ConstructorTest()
        {
            CompareBLL target = new CompareBLL();

            return(target);
            // TODO: add assertions to method CompareBLLTest.ConstructorTest()
        }
Example #2
0
        public void Compare2stringTest01()
        {
            CompareBLL compareBLL;
            bool       b;

            compareBLL = new CompareBLL();
            b          = this.Compare2stringTest(compareBLL, (string)null, (string)null);
        }
Example #3
0
        public void changepassTest01()
        {
            CompareBLL compareBLL;
            bool       b;

            compareBLL = new CompareBLL();
            b          = this.changepassTest(compareBLL, (string)null, (string)null);
        }
Example #4
0
        public bool changepassTest(
            [PexAssumeUnderTest] CompareBLL target,
            string id,
            string pass
            )
        {
            bool result = target.changepass(id, pass);

            return(result);
            // TODO: add assertions to method CompareBLLTest.changepassTest(CompareBLL, String, String)
        }
Example #5
0
        public bool Compare2stringTest(
            [PexAssumeUnderTest] CompareBLL target,
            string oldstring,
            string newstring
            )
        {
            bool result = target.Compare2string(oldstring, newstring);

            return(result);
            // TODO: add assertions to method CompareBLLTest.Compare2stringTest(CompareBLL, String, String)
        }