Index: src/Common/DelftTools.Utils/DelftTools.Utils.csproj =================================================================== diff -u -rdbf346f0cc265bf639c1b94ac0eedc1c7bd9d0e4 -r893ead4c5aa34d9e3c27688d0851f4064f9b38b6 --- src/Common/DelftTools.Utils/DelftTools.Utils.csproj (.../DelftTools.Utils.csproj) (revision dbf346f0cc265bf639c1b94ac0eedc1c7bd9d0e4) +++ src/Common/DelftTools.Utils/DelftTools.Utils.csproj (.../DelftTools.Utils.csproj) (revision 893ead4c5aa34d9e3c27688d0851f4064f9b38b6) @@ -142,7 +142,6 @@ - Fisheye: Tag 893ead4c5aa34d9e3c27688d0851f4064f9b38b6 refers to a dead (removed) revision in file `src/Common/DelftTools.Utils/PropertyBag/Dynamic/DynamicDataItemPropertyBag.cs'. Fisheye: No comparison available. Pass `N' to diff? Index: test/Common/DelftTools.Utils.Tests/Collections/Generic/EventedListTest.cs =================================================================== diff -u -r7eed8f9cfa868b199699b1fbf58bcde2c9271d84 -r893ead4c5aa34d9e3c27688d0851f4064f9b38b6 --- test/Common/DelftTools.Utils.Tests/Collections/Generic/EventedListTest.cs (.../EventedListTest.cs) (revision 7eed8f9cfa868b199699b1fbf58bcde2c9271d84) +++ test/Common/DelftTools.Utils.Tests/Collections/Generic/EventedListTest.cs (.../EventedListTest.cs) (revision 893ead4c5aa34d9e3c27688d0851f4064f9b38b6) @@ -244,5 +244,34 @@ bool INotifyPropertyChange.HasParent { get; set; } } + + private class MockClassWithTwoProperties : INotifyPropertyChange + { + private string stringField; + public event PropertyChangedEventHandler PropertyChanged; + public event PropertyChangingEventHandler PropertyChanging; + + public string StringProperty + { + get + { + return stringField; + } + set + { + if (PropertyChanging != null) + { + PropertyChanging(this, new PropertyChangingEventArgs("StringProperty")); + } + stringField = value; + if (PropertyChanged != null) + { + PropertyChanged(this, new PropertyChangedEventArgs("StringProperty")); + } + } + } + + bool INotifyPropertyChange.HasParent { get; set; } + } } } \ No newline at end of file Fisheye: Tag 893ead4c5aa34d9e3c27688d0851f4064f9b38b6 refers to a dead (removed) revision in file `test/Common/DelftTools.Utils.Tests/Collections/Generic/MockClassWithTwoProperties.cs'. Fisheye: No comparison available. Pass `N' to diff? Index: test/Common/DelftTools.Utils.Tests/DelftTools.Utils.Tests.csproj =================================================================== diff -u -rdbf346f0cc265bf639c1b94ac0eedc1c7bd9d0e4 -r893ead4c5aa34d9e3c27688d0851f4064f9b38b6 --- test/Common/DelftTools.Utils.Tests/DelftTools.Utils.Tests.csproj (.../DelftTools.Utils.Tests.csproj) (revision dbf346f0cc265bf639c1b94ac0eedc1c7bd9d0e4) +++ test/Common/DelftTools.Utils.Tests/DelftTools.Utils.Tests.csproj (.../DelftTools.Utils.Tests.csproj) (revision 893ead4c5aa34d9e3c27688d0851f4064f9b38b6) @@ -91,7 +91,6 @@ - @@ -107,7 +106,6 @@ - Fisheye: Tag 893ead4c5aa34d9e3c27688d0851f4064f9b38b6 refers to a dead (removed) revision in file `test/Common/DelftTools.Utils.Tests/PropertyBag/DynamicDataItemPropertyBagTest.cs'. Fisheye: No comparison available. Pass `N' to diff? Index: test/Common/DelftTools.Utils.Tests/PropertyBag/DynamicPropertyBagTest.cs =================================================================== diff -u -r3c68575d4782dec22cd26172a45fcaa90eb12013 -r893ead4c5aa34d9e3c27688d0851f4064f9b38b6 --- test/Common/DelftTools.Utils.Tests/PropertyBag/DynamicPropertyBagTest.cs (.../DynamicPropertyBagTest.cs) (revision 3c68575d4782dec22cd26172a45fcaa90eb12013) +++ test/Common/DelftTools.Utils.Tests/PropertyBag/DynamicPropertyBagTest.cs (.../DynamicPropertyBagTest.cs) (revision 893ead4c5aa34d9e3c27688d0851f4064f9b38b6) @@ -350,7 +350,13 @@ { public string PrivateSetter { get; private set; } - public string NoSetter { get; private set; } + public string NoSetter + { + get + { + return ""; + } + } } #endregion Index: test/Common/DelftTools.Utils.Tests/TextDocumentTest.cs =================================================================== diff -u -rdbf346f0cc265bf639c1b94ac0eedc1c7bd9d0e4 -r893ead4c5aa34d9e3c27688d0851f4064f9b38b6 --- test/Common/DelftTools.Utils.Tests/TextDocumentTest.cs (.../TextDocumentTest.cs) (revision dbf346f0cc265bf639c1b94ac0eedc1c7bd9d0e4) +++ test/Common/DelftTools.Utils.Tests/TextDocumentTest.cs (.../TextDocumentTest.cs) (revision 893ead4c5aa34d9e3c27688d0851f4064f9b38b6) @@ -1,6 +1,5 @@ using System; using System.ComponentModel; -using DelftTools.TestUtils; using NUnit.Framework; namespace DelftTools.Utils.Tests Index: test/Plugins/Wti/Wti.Forms.Test/NodePresenters/PipingDataNodePresenterTest.cs =================================================================== diff -u -rcbc411cd86a4b826cfb17e0ac45921c0f6433f93 -r893ead4c5aa34d9e3c27688d0851f4064f9b38b6 --- test/Plugins/Wti/Wti.Forms.Test/NodePresenters/PipingDataNodePresenterTest.cs (.../PipingDataNodePresenterTest.cs) (revision cbc411cd86a4b826cfb17e0ac45921c0f6433f93) +++ test/Plugins/Wti/Wti.Forms.Test/NodePresenters/PipingDataNodePresenterTest.cs (.../PipingDataNodePresenterTest.cs) (revision 893ead4c5aa34d9e3c27688d0851f4064f9b38b6) @@ -3,7 +3,6 @@ using DelftTools.Controls; using DelftTools.Shell.Core; using DelftTools.Utils.Collections; -using DeltaShell.Tests.TestObjects; using NUnit.Framework; using Rhino.Mocks; using Wti.Data;