Пример #1
0
        public string createIDTest([PexAssumeUnderTest] ProgramOutBLL target)
        {
            string result = target.createID();

            return(result);
            // TODO: add assertions to method ProgramOutBLLTest.createIDTest(ProgramOutBLL)
        }
Пример #2
0
        public List <ProgramOutcome> LoadPOutcomesTest([PexAssumeUnderTest] ProgramOutBLL target, string idp)
        {
            List <ProgramOutcome> result = target.LoadPOutcomes(idp);

            return(result);
            // TODO: add assertions to method ProgramOutBLLTest.LoadPOutcomesTest(ProgramOutBLL, String)
        }
Пример #3
0
        public ProgramOutBLL ConstructorTest()
        {
            ProgramOutBLL target = new ProgramOutBLL();

            return(target);
            // TODO: add assertions to method ProgramOutBLLTest.ConstructorTest()
        }
Пример #4
0
        public void LoadOutcomesTest01()
        {
            ProgramOutBLL         programOutBLL;
            List <ProgramOutcome> list;

            programOutBLL = new ProgramOutBLL();
            list          = this.LoadOutcomesTest(programOutBLL, (string)null);
        }
Пример #5
0
        public void createIDTest01()
        {
            ProgramOutBLL programOutBLL;
            string        s;

            programOutBLL = new ProgramOutBLL();
            s             = this.createIDTest(programOutBLL);
        }
        public void AddProOutTest01()
        {
            ProgramOutBLL programOutBLL;
            bool          b;

            programOutBLL = new ProgramOutBLL();
            b             =
                this.AddProOutTest(programOutBLL, (string)null, (string)null, 0, (string)null);
        }
Пример #7
0
        public bool EditProOutTest(
            [PexAssumeUnderTest] ProgramOutBLL target,
            string id,
            string no,
            int type,
            string content
            )
        {
            bool result = target.EditProOut(id, no, type, content);

            return(result);
            // TODO: add assertions to method ProgramOutBLLTest.EditProOutTest(ProgramOutBLL, String, String, Int32, String)
        }