Index: Ringtoets/Common/test/Ringtoets.Common.Forms.TestUtil/FailureMechanismResultWithProbabilityTester.cs =================================================================== diff -u -r967ba9221cb505caf8d8f5afd3a0e0aee9664e30 -rf49c793792a168edb24106ee3d6cf6e6a2331e63 --- Ringtoets/Common/test/Ringtoets.Common.Forms.TestUtil/FailureMechanismResultWithProbabilityTester.cs (.../FailureMechanismResultWithProbabilityTester.cs) (revision 967ba9221cb505caf8d8f5afd3a0e0aee9664e30) +++ Ringtoets/Common/test/Ringtoets.Common.Forms.TestUtil/FailureMechanismResultWithProbabilityTester.cs (.../FailureMechanismResultWithProbabilityTester.cs) (revision f49c793792a168edb24106ee3d6cf6e6a2331e63) @@ -88,35 +88,6 @@ } [Test] - public void GivenFailureMechanismResultsView_WhenCalculatorThrowsException_FailureMechanismAssemblyResultCleared() - { - // Given - var failureMechanism = new TFailureMechanism(); - - using (new AssemblyToolCalculatorFactoryConfig()) - using (ShowFailureMechanismResultsView(failureMechanism)) - { - // Precondition - BoxedLabel assemblyGroupLabel = GetGroupLabel(); - BoxedLabel assemblyProbabilityLabel = GetProbabilityLabelControl(); - Assert.AreEqual("1/1", assemblyProbabilityLabel.Text); - Assert.AreEqual("IIIt", assemblyGroupLabel.Text); - Assert.AreEqual(Color.FromArgb(255, 255, 0), assemblyGroupLabel.BackColor); - - // When - var calculatorfactory = (TestAssemblyToolCalculatorFactory) AssemblyToolCalculatorFactory.Instance; - FailureMechanismAssemblyCalculatorStub calculator = calculatorfactory.LastCreatedFailureMechanismAssemblyCalculator; - calculator.ThrowExceptionOnCalculate = true; - failureMechanism.NotifyObservers(); - - // Assert - Assert.AreEqual("-", assemblyProbabilityLabel.Text); - Assert.IsEmpty(assemblyGroupLabel.Text); - Assert.AreEqual(Color.White, assemblyGroupLabel.BackColor); - } - } - - [Test] public void GivenFailureMechanismResultsView_WhenResultChangedAndSectionResultNotified_FailureMechanismAssemblyResultUpdated() { // Given