Index: Ringtoets/Piping/test/Ringtoets.Piping.Forms.Test/TreeNodeInfos/PipingCalculationGroupContextTreeNodeInfoTest.cs =================================================================== diff -u -r3ff488a27f75d080db7cf4e13f508ba5555516df -r7d242b8efca25dd01d33ba0481d707f7ee4baebd --- Ringtoets/Piping/test/Ringtoets.Piping.Forms.Test/TreeNodeInfos/PipingCalculationGroupContextTreeNodeInfoTest.cs (.../PipingCalculationGroupContextTreeNodeInfoTest.cs) (revision 3ff488a27f75d080db7cf4e13f508ba5555516df) +++ Ringtoets/Piping/test/Ringtoets.Piping.Forms.Test/TreeNodeInfos/PipingCalculationGroupContextTreeNodeInfoTest.cs (.../PipingCalculationGroupContextTreeNodeInfoTest.cs) (revision 7d242b8efca25dd01d33ba0481d707f7ee4baebd) @@ -77,70 +77,6 @@ } [Test] - public void Text_Always_ReturnsWrappedDataName() - { - // Setup - var testname = "testName"; - var group = new CalculationGroup - { - Name = testname - }; - var pipingFailureMechanismMock = mocks.StrictMock(); - var assessmentSectionMock = mocks.StrictMock(); - - mocks.ReplayAll(); - - var groupContext = new PipingCalculationGroupContext(group, - Enumerable.Empty(), - Enumerable.Empty(), - pipingFailureMechanismMock, - assessmentSectionMock); - - // Call - var text = info.Text(groupContext); - - // Assert - Assert.AreEqual(testname, text); - mocks.VerifyAll(); - } - - [Test] - public void Image_Always_FolderIcon() - { - // Call - var image = info.Image(null); - - // Assert - TestHelper.AssertImagesAreEqual(RingtoetsFormsResources.GeneralFolderIcon, image); - } - - [Test] - public void EnsureVisibleOnCreate_Always_ReturnsTrue() - { - // Setup - var group = new CalculationGroup(); - var pipingFailureMechanismMock = mocks.StrictMock(); - var assessmentSectionMock = mocks.StrictMock(); - mocks.ReplayAll(); - - var groupContext = new PipingCalculationGroupContext(group, - Enumerable.Empty(), - Enumerable.Empty(), - pipingFailureMechanismMock, - assessmentSectionMock); - - mocks.ReplayAll(); - - // Call - var result = info.EnsureVisibleOnCreate(groupContext); - - // Assert - Assert.IsTrue(result); - - mocks.VerifyAll(); - } - - [Test] public void ChildNodeObjects_EmptyGroup_ReturnEmpty() { // Setup