Esempio n. 1
0
        public TestDefinition OutputList_SlowSpeed()
        {
            // create the control
            ol3.Identifier = "WidgetTest3";
            ol3.TickSpeed  = 3000;
            ol3.Initialize();

            // prepare the  testDefinition
            TestDefinition info = new TestDefinition();

            info.testName     = "OutputList_Slow";
            info.testDesc     = "Test where the OutputList is put in 'slow' conditioons. Button 1 will add new text, Button 2 will Clear, and Button 3 will not be used.";
            info.testWidget   = ol3;
            info.buttonClick1 = new EventHandler(onClickOl3AddText);
            info.buttonClick2 = new EventHandler(onClickOl3ClearText);

            return(info);
        }