Index: System tests/AutomatedSystemTests/AutomatedSystemTests/Modules/Calculation/CalculateValueParameterN.cs
===================================================================
diff -u -rb21347510f5ee7ec9b04973b8fa4b4bffaf4b731 -rdbfd6d5a71d7d491940d4ec5bf766f125da12229
--- System tests/AutomatedSystemTests/AutomatedSystemTests/Modules/Calculation/CalculateValueParameterN.cs (.../CalculateValueParameterN.cs) (revision b21347510f5ee7ec9b04973b8fa4b4bffaf4b731)
+++ System tests/AutomatedSystemTests/AutomatedSystemTests/Modules/Calculation/CalculateValueParameterN.cs (.../CalculateValueParameterN.cs) (revision dbfd6d5a71d7d491940d4ec5bf766f125da12229)
@@ -69,6 +69,16 @@
}
///
+ /// Gets or sets the value of variable nameOfParameterInPropertiesPanel.
+ ///
+ [TestVariable("afe1ce8e-ff00-4307-a9d8-1f91fa796fad")]
+ public string nameOfParameterInPropertiesPanel
+ {
+ get { return repo.nameOfParameterInPropertiesPanel; }
+ set { repo.nameOfParameterInPropertiesPanel = value; }
+ }
+
+ ///
/// Gets or sets the value of variable substringTrajectName.
///
[TestVariable("77ae6c27-603e-4704-add9-e1249169f0e5")]
@@ -98,16 +108,6 @@
set { repo.fmLabel = value; }
}
- ///
- /// Gets or sets the value of variable nameOfParameterInPropertiesPanel.
- ///
- [TestVariable("afe1ce8e-ff00-4307-a9d8-1f91fa796fad")]
- public string nameOfParameterInPropertiesPanel
- {
- get { return repo.nameOfParameterInPropertiesPanel; }
- set { repo.nameOfParameterInPropertiesPanel = value; }
- }
-
#endregion
///
Index: System tests/AutomatedSystemTests/AutomatedSystemTests/Modules/IO/MigrateAllFilesInFolderUsingCommandLineTool.cs
===================================================================
diff -u -r8163726cf2097702f79a5e21a7ed4a4283f98a66 -rdbfd6d5a71d7d491940d4ec5bf766f125da12229
--- System tests/AutomatedSystemTests/AutomatedSystemTests/Modules/IO/MigrateAllFilesInFolderUsingCommandLineTool.cs (.../MigrateAllFilesInFolderUsingCommandLineTool.cs) (revision 8163726cf2097702f79a5e21a7ed4a4283f98a66)
+++ System tests/AutomatedSystemTests/AutomatedSystemTests/Modules/IO/MigrateAllFilesInFolderUsingCommandLineTool.cs (.../MigrateAllFilesInFolderUsingCommandLineTool.cs) (revision dbfd6d5a71d7d491940d4ec5bf766f125da12229)
@@ -77,17 +77,31 @@
string fileName = Path.GetFileName(sourceFilePath);
string destinationFilePath = Path.Combine(targetFolder, fileName);
- //string commandToRun = "..\\..\\..\\..\\..\\bin\\Debug\\Application\\Built-in\\Managed\\Core\\Migratiehulpprogramma.exe " + @sourceFilePath + " " + @destinationFilePath;
- string commandToRun = "dir *.*";
+ //string commandToRun = "/C ..\\..\\..\\..\\..\\bin\\Debug\\Application\\Built-in\\Managed\\Core\\Migratiehulpprogramma.exe " + @sourceFilePath + " " + @destinationFilePath + " >borrame.log";
+ string commandToRun = "/C ..\\..\\..\\..\\..\\bin\\Debug\\Migratiehulpprogramma.exe " + @sourceFilePath + " " + @destinationFilePath + " >borrame.log";
+ //string commandToRun = "/C dir *.* >borrame.log";
- var psi = new ProcessStartInfo(commandToRun) {
- UseShellExecute = true,
- CreateNoWindow = false
- };
+ RunCommand(commandToRun);
+ //var psi = new ProcessStartInfo(commandToRun) {
+ // UseShellExecute = true,
+ // CreateNoWindow = false
+ // };
//Process.Start(psi);
- System.Diagnostics.Process.Start("dir *.*");
+ //System.Diagnostics.Process.Start("dir *.*");
}
}
+
+ private void RunCommand(string arguments)
+ {
+ System.Diagnostics.Process process = new System.Diagnostics.Process();
+ System.Diagnostics.ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo();
+ //startInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Normal; //.Hidden;
+ startInfo.FileName = "cmd.exe";
+ startInfo.Arguments = arguments;
+ process.StartInfo = startInfo;
+ process.Start();
+ process.WaitForExit();
+ }
}
}
Index: System tests/AutomatedSystemTests/AutomatedSystemTests/TestScript19.rxtst
===================================================================
diff -u -rb21347510f5ee7ec9b04973b8fa4b4bffaf4b731 -rdbfd6d5a71d7d491940d4ec5bf766f125da12229
--- System tests/AutomatedSystemTests/AutomatedSystemTests/TestScript19.rxtst (.../TestScript19.rxtst) (revision b21347510f5ee7ec9b04973b8fa4b4bffaf4b731)
+++ System tests/AutomatedSystemTests/AutomatedSystemTests/TestScript19.rxtst (.../TestScript19.rxtst) (revision dbfd6d5a71d7d491940d4ec5bf766f125da12229)
@@ -5397,5 +5397,11 @@
+
+ Newtonsoft.Json.dll
+
+
+ Ranorex Automation Helpers.dll
+
Index: System tests/AutomatedSystemTests/AutomatedSystemTests/TestScript22.rxtst
===================================================================
diff -u -rb21347510f5ee7ec9b04973b8fa4b4bffaf4b731 -rdbfd6d5a71d7d491940d4ec5bf766f125da12229
--- System tests/AutomatedSystemTests/AutomatedSystemTests/TestScript22.rxtst (.../TestScript22.rxtst) (revision b21347510f5ee7ec9b04973b8fa4b4bffaf4b731)
+++ System tests/AutomatedSystemTests/AutomatedSystemTests/TestScript22.rxtst (.../TestScript22.rxtst) (revision dbfd6d5a71d7d491940d4ec5bf766f125da12229)
@@ -2360,5 +2360,11 @@
+
+ Newtonsoft.Json.dll
+
+
+ Ranorex Automation Helpers.dll
+
Index: System tests/AutomatedSystemTests/AutomatedSystemTests/VerySlowTestCases.rxtst
===================================================================
diff -u -r97b5481c7f6c5fdc36574584ee825404adf46876 -rdbfd6d5a71d7d491940d4ec5bf766f125da12229
--- System tests/AutomatedSystemTests/AutomatedSystemTests/VerySlowTestCases.rxtst (.../VerySlowTestCases.rxtst) (revision 97b5481c7f6c5fdc36574584ee825404adf46876)
+++ System tests/AutomatedSystemTests/AutomatedSystemTests/VerySlowTestCases.rxtst (.../VerySlowTestCases.rxtst) (revision dbfd6d5a71d7d491940d4ec5bf766f125da12229)
@@ -3058,6 +3058,26 @@
id="7afa684a-e56c-40bf-a558-205a01981f48"
name="ValidateResultsArePresentPresentInDocumentView">
+
+
+
+
+
+
+
+
@@ -3982,7 +4002,7 @@
+ value="X:\script15\input\Project_15a_15b_15c_zonder_resultaten.risk">
@@ -5378,6 +5398,14 @@
name="scriptOutputFolder"
value="">
+
+
+
+
+
+
-
-
-
-