Index: System tests/AutomatedSystemTests/AutomatedSystemTests/AutomatedSystemTests.csproj =================================================================== diff -u -r308c3a9d135bf7122659febe8659ffe72f9ec510 -ree6e94484d34db65ff382db1c7bbd1523b5d6b29 --- System tests/AutomatedSystemTests/AutomatedSystemTests/AutomatedSystemTests.csproj (.../AutomatedSystemTests.csproj) (revision 308c3a9d135bf7122659febe8659ffe72f9ec510) +++ System tests/AutomatedSystemTests/AutomatedSystemTests/AutomatedSystemTests.csproj (.../AutomatedSystemTests.csproj) (revision ee6e94484d34db65ff382db1c7bbd1523b5d6b29) @@ -150,6 +150,18 @@ true 325092cf-4a87-4a04-a578-da3aff997536 + + 19cd184f-d473-437a-9fd5-c592a2f61743 + CalculateCategoryBoundary.rxrec + true + e6e89825-6bd5-445d-a2b3-c5c8a0cdc970 + + + 19cd184f-d473-437a-9fd5-c592a2f61743 + CalculateCategoryBoundary.rxrec + true + 6217e391-5ede-44c5-97f8-aa4b0d6a63b0 + 0d625f89-ffec-435d-9b39-d07be9cf66b5 CalculateLinearTransformationOfValue.rxrec @@ -729,6 +741,18 @@ true 5edd3525-f8f2-4e1e-9179-3c85f8165e4b + + 28e8d2ac-8496-492c-bd67-c05dd0310839 + ValidateCategoryBoundary.rxrec + true + 311a55ef-b84d-4ae2-89cd-1f81897d4107 + + + 28e8d2ac-8496-492c-bd67-c05dd0310839 + ValidateCategoryBoundary.rxrec + true + 42cfd11f-b1b1-4fec-bfb1-b648b87e1bcf + 45ca3cad-b4eb-4830-b715-695e59a034fc ValidateContributionInFailureMechanismContributionView.rxrec @@ -1098,6 +1122,11 @@ 137723a5-e147-4b62-8c15-5c31a3d68f96 40cb8eed-98dc-4b16-a5ad-7ef93b4f444c + + 8b6648ca-2429-462f-8074-96184700bbed + 19cd184f-d473-437a-9fd5-c592a2f61743 + b235cebd-3495-47c7-96d9-f82c3092f4cb + 8b6648ca-2429-462f-8074-96184700bbed 0d625f89-ffec-435d-9b39-d07be9cf66b5 @@ -1338,6 +1367,11 @@ 48b2d7f3-eb5f-4e6a-906d-06315aeaa9db 18e39f84-9b42-4666-802c-2fecd9846123 + + 8b6648ca-2429-462f-8074-96184700bbed + 28e8d2ac-8496-492c-bd67-c05dd0310839 + b8095d4b-9eb5-467b-976f-5811b54836f6 + 8b6648ca-2429-462f-8074-96184700bbed 45ca3cad-b4eb-4830-b715-695e59a034fc Index: System tests/AutomatedSystemTests/AutomatedSystemTests/AutomatedSystemTests.rxtst =================================================================== diff -u -r308c3a9d135bf7122659febe8659ffe72f9ec510 -ree6e94484d34db65ff382db1c7bbd1523b5d6b29 --- System tests/AutomatedSystemTests/AutomatedSystemTests/AutomatedSystemTests.rxtst (.../AutomatedSystemTests.rxtst) (revision 308c3a9d135bf7122659febe8659ffe72f9ec510) +++ System tests/AutomatedSystemTests/AutomatedSystemTests/AutomatedSystemTests.rxtst (.../AutomatedSystemTests.rxtst) (revision ee6e94484d34db65ff382db1c7bbd1523b5d6b29) @@ -3739,6 +3739,12 @@ ref="3c2d44f5-31b5-4584-91c8-1ad748affc77" type="Recording"> + + + + + + + + @@ -9571,6 +9591,10 @@ + + @@ -10921,6 +10945,26 @@ name="OpenViewForCategoryBoundaries"> + + + + + + + + + + + + + + + + + /// This method gets called right after the recording has been started. + /// It can be used to execute recording specific initialization code. + /// + private void Init() + { + // Your recording specific initialization code goes here. + } + + public string CalculateSingleCategoryBoundary() + { + // TODO: Replace the following line with your code implementation. + throw new NotImplementedException(); + } + + } +} Index: System tests/AutomatedSystemTests/AutomatedSystemTests/CalculateCategoryBoundary.cs =================================================================== diff -u --- System tests/AutomatedSystemTests/AutomatedSystemTests/CalculateCategoryBoundary.cs (revision 0) +++ System tests/AutomatedSystemTests/AutomatedSystemTests/CalculateCategoryBoundary.cs (revision ee6e94484d34db65ff382db1c7bbd1523b5d6b29) @@ -0,0 +1,104 @@ +/////////////////////////////////////////////////////////////////////////////// +// +// This file was automatically generated by RANOREX. +// DO NOT MODIFY THIS FILE! It is regenerated by the designer. +// All your modifications will be lost! +// http://www.ranorex.com +// +/////////////////////////////////////////////////////////////////////////////// + +using System; +using System.Collections.Generic; +using System.Text; +using System.Text.RegularExpressions; +using System.Drawing; +using System.Threading; +using WinForms = System.Windows.Forms; + +using Ranorex; +using Ranorex.Core; +using Ranorex.Core.Testing; +using Ranorex.Core.Repository; + +namespace AutomatedSystemTests +{ +#pragma warning disable 0436 //(CS0436) The type 'type' in 'assembly' conflicts with the imported type 'type2' in 'assembly'. Using the type defined in 'assembly'. + /// + ///The CalculateCategoryBoundary recording. + /// + [TestModule("b235cebd-3495-47c7-96d9-f82c3092f4cb", ModuleType.Recording, 1)] + public partial class CalculateCategoryBoundary : ITestModule + { + /// + /// Holds an instance of the AutomatedSystemTestsRepository repository. + /// + public static AutomatedSystemTestsRepository repo = AutomatedSystemTestsRepository.Instance; + + static CalculateCategoryBoundary instance = new CalculateCategoryBoundary(); + + /// + /// Constructs a new instance. + /// + public CalculateCategoryBoundary() + { + calculatedCategoryBoundary = ""; + } + + /// + /// Gets a static instance of this recording. + /// + public static CalculateCategoryBoundary Instance + { + get { return instance; } + } + +#region Variables + + string _calculatedCategoryBoundary; + + /// + /// Gets or sets the value of variable calculatedCategoryBoundary. + /// + [TestVariable("16e50af2-562e-44a8-990b-c5568f64a537")] + public string calculatedCategoryBoundary + { + get { return _calculatedCategoryBoundary; } + set { _calculatedCategoryBoundary = value; } + } + +#endregion + + /// + /// Starts the replay of the static recording . + /// + [System.CodeDom.Compiler.GeneratedCode("Ranorex", global::Ranorex.Core.Constants.CodeGenVersion)] + public static void Start() + { + TestModuleRunner.Run(Instance); + } + + /// + /// Performs the playback of actions in this recording. + /// + /// You should not call this method directly, instead pass the module + /// instance to the method + /// that will in turn invoke this method. + [System.CodeDom.Compiler.GeneratedCode("Ranorex", global::Ranorex.Core.Constants.CodeGenVersion)] + void ITestModule.Run() + { + Mouse.DefaultMoveTime = 300; + Keyboard.DefaultKeyPressTime = 20; + Delay.SpeedFactor = 1.00; + + Init(); + + calculatedCategoryBoundary = CalculateSingleCategoryBoundary(); + Delay.Milliseconds(0); + + } + +#region Image Feature Data +#endregion + } +#pragma warning restore 0436 +} Index: System tests/AutomatedSystemTests/AutomatedSystemTests/CalculateCategoryBoundary.rxrec =================================================================== diff -u --- System tests/AutomatedSystemTests/AutomatedSystemTests/CalculateCategoryBoundary.rxrec (revision 0) +++ System tests/AutomatedSystemTests/AutomatedSystemTests/CalculateCategoryBoundary.rxrec (revision ee6e94484d34db65ff382db1c7bbd1523b5d6b29) @@ -0,0 +1,71 @@ + + + + 1 + + + False + + + True + + + 1 + + + True + + + + + + + + + + + + + + + + + + + + + + + + + + + CalculateCategoryBoundary.UserCode.cs + + + + Index: System tests/AutomatedSystemTests/AutomatedSystemTests/ValidateCategoryBoundary.UserCode.cs =================================================================== diff -u --- System tests/AutomatedSystemTests/AutomatedSystemTests/ValidateCategoryBoundary.UserCode.cs (revision 0) +++ System tests/AutomatedSystemTests/AutomatedSystemTests/ValidateCategoryBoundary.UserCode.cs (revision ee6e94484d34db65ff382db1c7bbd1523b5d6b29) @@ -0,0 +1,37 @@ +/////////////////////////////////////////////////////////////////////////////// +// +// This file was automatically generated by RANOREX. +// Your custom recording code should go in this file. +// The designer will only add methods to this file, so your custom code won't be overwritten. +// http://www.ranorex.com +// +/////////////////////////////////////////////////////////////////////////////// + +using System; +using System.Collections.Generic; +using System.Text; +using System.Text.RegularExpressions; +using System.Drawing; +using System.Threading; +using WinForms = System.Windows.Forms; + +using Ranorex; +using Ranorex.Core; +using Ranorex.Core.Repository; +using Ranorex.Core.Testing; + +namespace AutomatedSystemTests +{ + public partial class ValidateCategoryBoundary + { + /// + /// This method gets called right after the recording has been started. + /// It can be used to execute recording specific initialization code. + /// + private void Init() + { + // Your recording specific initialization code goes here. + } + + } +} Index: System tests/AutomatedSystemTests/AutomatedSystemTests/ValidateCategoryBoundary.cs =================================================================== diff -u --- System tests/AutomatedSystemTests/AutomatedSystemTests/ValidateCategoryBoundary.cs (revision 0) +++ System tests/AutomatedSystemTests/AutomatedSystemTests/ValidateCategoryBoundary.cs (revision ee6e94484d34db65ff382db1c7bbd1523b5d6b29) @@ -0,0 +1,88 @@ +/////////////////////////////////////////////////////////////////////////////// +// +// This file was automatically generated by RANOREX. +// DO NOT MODIFY THIS FILE! It is regenerated by the designer. +// All your modifications will be lost! +// http://www.ranorex.com +// +/////////////////////////////////////////////////////////////////////////////// + +using System; +using System.Collections.Generic; +using System.Text; +using System.Text.RegularExpressions; +using System.Drawing; +using System.Threading; +using WinForms = System.Windows.Forms; + +using Ranorex; +using Ranorex.Core; +using Ranorex.Core.Testing; +using Ranorex.Core.Repository; + +namespace AutomatedSystemTests +{ +#pragma warning disable 0436 //(CS0436) The type 'type' in 'assembly' conflicts with the imported type 'type2' in 'assembly'. Using the type defined in 'assembly'. + /// + ///The ValidateCategoryBoundary recording. + /// + [TestModule("b8095d4b-9eb5-467b-976f-5811b54836f6", ModuleType.Recording, 1)] + public partial class ValidateCategoryBoundary : ITestModule + { + /// + /// Holds an instance of the AutomatedSystemTestsRepository repository. + /// + public static AutomatedSystemTestsRepository repo = AutomatedSystemTestsRepository.Instance; + + static ValidateCategoryBoundary instance = new ValidateCategoryBoundary(); + + /// + /// Constructs a new instance. + /// + public ValidateCategoryBoundary() + { + } + + /// + /// Gets a static instance of this recording. + /// + public static ValidateCategoryBoundary Instance + { + get { return instance; } + } + +#region Variables + +#endregion + + /// + /// Starts the replay of the static recording . + /// + [System.CodeDom.Compiler.GeneratedCode("Ranorex", global::Ranorex.Core.Constants.CodeGenVersion)] + public static void Start() + { + TestModuleRunner.Run(Instance); + } + + /// + /// Performs the playback of actions in this recording. + /// + /// You should not call this method directly, instead pass the module + /// instance to the method + /// that will in turn invoke this method. + [System.CodeDom.Compiler.GeneratedCode("Ranorex", global::Ranorex.Core.Constants.CodeGenVersion)] + void ITestModule.Run() + { + Mouse.DefaultMoveTime = 300; + Keyboard.DefaultKeyPressTime = 20; + Delay.SpeedFactor = 1.00; + + Init(); + + } + +#region Image Feature Data +#endregion + } +#pragma warning restore 0436 +} Index: System tests/AutomatedSystemTests/AutomatedSystemTests/ValidateCategoryBoundary.rxrec =================================================================== diff -u --- System tests/AutomatedSystemTests/AutomatedSystemTests/ValidateCategoryBoundary.rxrec (revision 0) +++ System tests/AutomatedSystemTests/AutomatedSystemTests/ValidateCategoryBoundary.rxrec (revision ee6e94484d34db65ff382db1c7bbd1523b5d6b29) @@ -0,0 +1,48 @@ + + + + 1 + + + False + + + True + + + 1 + + + True + + + + + + + + + + + + + + + ValidateCategoryBoundary.UserCode.cs + + + +