Index: Ringtoets/Common/test/Ringtoets.Common.Forms.TestUtil/FailureMechanismAssemblyResultWithProbabilityControlTester.cs =================================================================== diff -u -r5e48139fe1e5e5a7b54530bc42fcb1e0c0a3b9da -r5140bb73fc70fbcb1064fa63171fde340e3f2e6d --- Ringtoets/Common/test/Ringtoets.Common.Forms.TestUtil/FailureMechanismAssemblyResultWithProbabilityControlTester.cs (.../FailureMechanismAssemblyResultWithProbabilityControlTester.cs) (revision 5e48139fe1e5e5a7b54530bc42fcb1e0c0a3b9da) +++ Ringtoets/Common/test/Ringtoets.Common.Forms.TestUtil/FailureMechanismAssemblyResultWithProbabilityControlTester.cs (.../FailureMechanismAssemblyResultWithProbabilityControlTester.cs) (revision 5140bb73fc70fbcb1064fa63171fde340e3f2e6d) @@ -98,8 +98,8 @@ using (ShowFailureMechanismResultsView(failureMechanism)) { // Precondition - BoxedLabel assemblyGroupLabel = GetGroupLabel(); - BoxedLabel assemblyProbabilityLabel = GetProbabilityLabelControl(); + BorderedLabel assemblyGroupLabel = GetGroupLabel(); + BorderedLabel assemblyProbabilityLabel = GetProbabilityLabelControl(); Assert.AreEqual("1/1", assemblyProbabilityLabel.Text); Assert.AreEqual("IIIt", assemblyGroupLabel.Text); Assert.AreEqual(Color.FromArgb(255, 255, 0), assemblyGroupLabel.BackColor); @@ -129,8 +129,8 @@ using (ShowFailureMechanismResultsView(failureMechanism)) { // Precondition - BoxedLabel assemblyGroupLabel = GetGroupLabel(); - BoxedLabel assemblyProbabilityLabel = GetProbabilityLabelControl(); + BorderedLabel assemblyGroupLabel = GetGroupLabel(); + BorderedLabel assemblyProbabilityLabel = GetProbabilityLabelControl(); Assert.AreEqual("1/1", assemblyProbabilityLabel.Text); Assert.AreEqual("IIIt", assemblyGroupLabel.Text); Assert.AreEqual(Color.FromArgb(255, 255, 0), assemblyGroupLabel.BackColor); @@ -160,8 +160,8 @@ using (ShowFailureMechanismResultsView(failureMechanism)) { // Precondition - BoxedLabel assemblyGroupLabel = GetGroupLabel(); - BoxedLabel assemblyProbabilityLabel = GetProbabilityLabelControl(); + BorderedLabel assemblyGroupLabel = GetGroupLabel(); + BorderedLabel assemblyProbabilityLabel = GetProbabilityLabelControl(); Assert.AreEqual("1/1", assemblyProbabilityLabel.Text); Assert.AreEqual("IIIt", assemblyGroupLabel.Text); Assert.AreEqual(Color.FromArgb(255, 255, 0), assemblyGroupLabel.BackColor); @@ -200,14 +200,14 @@ /// A new . protected abstract TCalculationInput GetInput(TCalculation calculation); - private static BoxedLabel GetGroupLabel() + private static BorderedLabel GetGroupLabel() { - return (BoxedLabel) new ControlTester("GroupLabel").TheObject; + return (BorderedLabel) new ControlTester("GroupLabel").TheObject; } - private static BoxedLabel GetProbabilityLabelControl() + private static BorderedLabel GetProbabilityLabelControl() { - return (BoxedLabel) new ControlTester("probabilityLabel").TheObject; + return (BorderedLabel) new ControlTester("probabilityLabel").TheObject; } private TView ShowFailureMechanismResultsView(TFailureMechanism failureMechanism)