Example #1
0
        public TestForm2(List <SimplyTest> tests, PupilSelectionWindow callback)
        {
            this.callback = callback;

            InitializeComponent();
            this.testCollection = tests;
            this.CurrentTest    = this.testCollection.FirstOrDefault();
        }
Example #2
0
        public TestForm2(List <SimplyTest> tests, PupilSelectionWindow callback, TestParent parent, int time = 999999, int currentTestNumber = 1)
        {
            this.callback          = callback;
            this.parent            = parent;
            this.currentTestNumber = currentTestNumber;

            InitializeComponent();
            init();
            this.ElapsedTime    = this.parent.time;
            this.testCollection = tests;
            this.CurrentTest    = this.testCollection.FirstOrDefault();
        }
Example #3
0
 public TestFormsArgument(List <List <SimplyTest> > listOfArguments, PupilSelectionWindow callback)
 {
     this.ListOfArguments = listOfArguments;
     this.Callback        = callback;
 }