コード例 #1
0
        private void SetupArguments(string currentDl, string testData, string result, string script, enScriptType type, bool escape = false)
        {
            TestStartNode = new FlowStep
            {
                Action = new DsfJavascriptActivity {
                    Result = result, Script = script, ScriptType = type, EscapeScript = escape
                }
            };

            CurrentDl = testData;
            TestData  = currentDl;
        }
コード例 #2
0
        /*
         * NOTE : You will find python test in the integration project because of faulty threading ;)
         * 
         */

        #endregion
        
        #region Private Test Methods

        void SetupArguments(string currentDl, string testData, string result, string script, enScriptType type)
        {
            TestStartNode = new FlowStep
            {
                Action = new DsfScriptingActivity { Result = result, Script = script, ScriptType = type }
            };

            CurrentDl = testData;
            TestData = currentDl;
        }
コード例 #3
0
        /*
         * NOTE : You will find python test in the integration project because of faulty threading ;)
         *
         */

        #endregion

        #region Private Test Methods

        void SetupArguments(string currentDL, string testData, string result, string script, enScriptType type)
        {
            TestStartNode = new FlowStep
            {
                Action = new DsfScriptingActivity {
                    Result = result, Script = script, ScriptType = type
                }
            };

            CurrentDl = testData;
            TestData  = currentDL;
        }