Beispiel #1
0
        public BaseTestScript(string scriptName)
        {
            Constructor = new ScriptingTestScriptConstructor(this);

            Construct(scriptName, null);
        }
Beispiel #2
0
        public BaseTestScript(string scriptName, IScript parentScript)
        {
            Constructor = new ScriptingTestScriptConstructor(this);

            Construct(scriptName, parentScript);
        }
Beispiel #3
0
        public BaseTestScript()
        {
            Constructor = new ScriptingTestScriptConstructor(this);

            // Don't call the construct function if no parameters were provided. Use delayed construction, and let the calling code call the Construct function explicitly.
        }