207208209210211212213214
"Script to run after running TestSuites" ) ); } protected GroovyEditorComponent buildTearDownScriptPanel() { tearDownGroovyEditor = new GroovyEditorComponent( new TearDownScriptGroovyEditorModel(), null ); return tearDownGroovyEditor; }
213214215216217218219220
return tearDownGroovyEditor; } protected GroovyEditorComponent buildSetupScriptPanel() { setupGroovyEditor = new GroovyEditorComponent( new SetupScriptGroovyEditorModel(), null ); return setupGroovyEditor; }
167168169170171172173174
"Script to run after a TestCase Run" ) ); } protected GroovyEditorComponent buildTearDownScriptPanel() { tearDownGroovyEditor = new GroovyEditorComponent( new TearDownScriptGroovyEditorModel(), null ); return tearDownGroovyEditor; }
173174175176177178179180
248249250251252253254255
254255256257258259260261
243244245246247248249250
"Script to run after running the TestSuite" ) ); } protected GroovyEditorComponent buildTearDownScriptPanel() { tearDownGroovyEditor = new GroovyEditorComponent( new TearDownScriptGroovyEditorModel(), null ); return tearDownGroovyEditor; }
249250251252253254255256
267268269270271272273274
return panel; } protected GroovyEditorComponent buildStartScriptPanel() { startGroovyEditor = new GroovyEditorComponent( new StartScriptGroovyEditorModel(), null ); return startGroovyEditor; }
273274275276277278279280
return startGroovyEditor; } protected GroovyEditorComponent buildStopScriptPanel() { stopGroovyEditor = new GroovyEditorComponent( new StopScriptGroovyEditorModel(), null ); return stopGroovyEditor; }