Index: test/Common/DelftTools.TestUtils/WindowsFormsTestHelper.cs =================================================================== diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r98210d0d98d36f2d3da5136cb69428125455fe55 --- test/Common/DelftTools.TestUtils/WindowsFormsTestHelper.cs (.../WindowsFormsTestHelper.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) +++ test/Common/DelftTools.TestUtils/WindowsFormsTestHelper.cs (.../WindowsFormsTestHelper.cs) (revision 98210d0d98d36f2d3da5136cb69428125455fe55) @@ -4,16 +4,13 @@ using System.Linq; using System.Reflection; using System.Windows.Forms; -using log4net; using NUnit.Framework; using Rhino.Mocks; namespace DelftTools.TestUtils { public partial class WindowsFormsTestHelper : Form { - private static ILog log = LogManager.GetLogger(typeof(WindowsFormsTestHelper)); - private static string nonModalControlsTestName; // current unit test name private static readonly IList nonModalControls = new List(); private Action
formShown; Index: test/Common/DelftTools.TestUtils/WpfTestHelper.xaml.cs =================================================================== diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r98210d0d98d36f2d3da5136cb69428125455fe55 --- test/Common/DelftTools.TestUtils/WpfTestHelper.xaml.cs (.../WpfTestHelper.xaml.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) +++ test/Common/DelftTools.TestUtils/WpfTestHelper.xaml.cs (.../WpfTestHelper.xaml.cs) (revision 98210d0d98d36f2d3da5136cb69428125455fe55) @@ -10,7 +10,7 @@ /// /// Interaction logic for WpfTestHelper.xaml /// - public partial class WpfTestHelper : Window + public partial class WpfTestHelper { private static readonly ILog log = LogManager.GetLogger(typeof(WindowsFormsTestHelper)); Fisheye: Tag 98210d0d98d36f2d3da5136cb69428125455fe55 refers to a dead (removed) revision in file `test/Common/DelftTools.Tests/Controls/Swf/DataEditorGenerator/Domain/BindModel.cs'. Fisheye: No comparison available. Pass `N' to diff? Index: test/Common/DelftTools.Tests/DelftTools.Tests.csproj =================================================================== diff -u -rd0dbd788fc8d74e7462c6abc40a2edb420426ea9 -r98210d0d98d36f2d3da5136cb69428125455fe55 --- test/Common/DelftTools.Tests/DelftTools.Tests.csproj (.../DelftTools.Tests.csproj) (revision d0dbd788fc8d74e7462c6abc40a2edb420426ea9) +++ test/Common/DelftTools.Tests/DelftTools.Tests.csproj (.../DelftTools.Tests.csproj) (revision 98210d0d98d36f2d3da5136cb69428125455fe55) @@ -105,7 +105,6 @@ - Index: test/Common/DelftTools.Tests/Shell/Core/WorkFlow/ActivityRunnerTest.cs =================================================================== diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r98210d0d98d36f2d3da5136cb69428125455fe55 --- test/Common/DelftTools.Tests/Shell/Core/WorkFlow/ActivityRunnerTest.cs (.../ActivityRunnerTest.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) +++ test/Common/DelftTools.Tests/Shell/Core/WorkFlow/ActivityRunnerTest.cs (.../ActivityRunnerTest.cs) (revision 98210d0d98d36f2d3da5136cb69428125455fe55) @@ -1,15 +1,12 @@ using System.Threading; using DelftTools.Shell.Core.Workflow; using NUnit.Framework; -using Rhino.Mocks; namespace DelftTools.Tests.Shell.Core.WorkFlow { [TestFixture] public class ActivityRunnerTest { - private static readonly MockRepository mocks = new MockRepository(); - [Test] public void ActivityIsRemovedAfterItIsFinished() { Index: test/Common/DelftTools.Utils.Tests/Collections/Generic/EnumerableListTest.cs =================================================================== diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r98210d0d98d36f2d3da5136cb69428125455fe55 --- test/Common/DelftTools.Utils.Tests/Collections/Generic/EnumerableListTest.cs (.../EnumerableListTest.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) +++ test/Common/DelftTools.Utils.Tests/Collections/Generic/EnumerableListTest.cs (.../EnumerableListTest.cs) (revision 98210d0d98d36f2d3da5136cb69428125455fe55) @@ -2,7 +2,6 @@ using System.Linq; using DelftTools.TestUtils; using DelftTools.Utils.Collections.Generic; -using log4net; using log4net.Core; using NUnit.Framework; @@ -11,8 +10,6 @@ [TestFixture] public class EnumerableListTest { - private static readonly ILog Log = LogManager.GetLogger(typeof(EnumerableListTest)); - [Test] public void EnumerableListItemCountShouldBeFast() { Index: test/Common/DelftTools.Utils.Tests/Collections/Generic/MockClassWithTwoProperties.cs =================================================================== diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r98210d0d98d36f2d3da5136cb69428125455fe55 --- test/Common/DelftTools.Utils.Tests/Collections/Generic/MockClassWithTwoProperties.cs (.../MockClassWithTwoProperties.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) +++ test/Common/DelftTools.Utils.Tests/Collections/Generic/MockClassWithTwoProperties.cs (.../MockClassWithTwoProperties.cs) (revision 98210d0d98d36f2d3da5136cb69428125455fe55) @@ -8,8 +8,6 @@ public event PropertyChangedEventHandler PropertyChanged; private string stringField; - public int IntField { get; set; } - public string StringProperty { get Index: test/Common/DelftTools.Utils.Tests/DelftTools.Utils.Tests.csproj =================================================================== diff -u -rd0dbd788fc8d74e7462c6abc40a2edb420426ea9 -r98210d0d98d36f2d3da5136cb69428125455fe55 --- test/Common/DelftTools.Utils.Tests/DelftTools.Utils.Tests.csproj (.../DelftTools.Utils.Tests.csproj) (revision d0dbd788fc8d74e7462c6abc40a2edb420426ea9) +++ test/Common/DelftTools.Utils.Tests/DelftTools.Utils.Tests.csproj (.../DelftTools.Utils.Tests.csproj) (revision 98210d0d98d36f2d3da5136cb69428125455fe55) @@ -117,8 +117,6 @@ - - Index: test/Common/DelftTools.Utils.Tests/Reflection/AssemblyBuilderTest.cs =================================================================== diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r98210d0d98d36f2d3da5136cb69428125455fe55 --- test/Common/DelftTools.Utils.Tests/Reflection/AssemblyBuilderTest.cs (.../AssemblyBuilderTest.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) +++ test/Common/DelftTools.Utils.Tests/Reflection/AssemblyBuilderTest.cs (.../AssemblyBuilderTest.cs) (revision 98210d0d98d36f2d3da5136cb69428125455fe55) @@ -9,7 +9,7 @@ { public abstract class A { - public abstract string GetToolWindowName(); + } [TestFixture] Fisheye: Tag 98210d0d98d36f2d3da5136cb69428125455fe55 refers to a dead (removed) revision in file `test/Common/DelftTools.Utils.Tests/Reflection/TestClasses/BaseClass.cs'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 98210d0d98d36f2d3da5136cb69428125455fe55 refers to a dead (removed) revision in file `test/Common/DelftTools.Utils.Tests/Reflection/TestClasses/OverridingClass.cs'. Fisheye: No comparison available. Pass `N' to diff? Index: test/Common/DelftTools.Utils.Tests/Reflection/TypeUtilsTest.cs =================================================================== diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r98210d0d98d36f2d3da5136cb69428125455fe55 --- test/Common/DelftTools.Utils.Tests/Reflection/TypeUtilsTest.cs (.../TypeUtilsTest.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) +++ test/Common/DelftTools.Utils.Tests/Reflection/TypeUtilsTest.cs (.../TypeUtilsTest.cs) (revision 98210d0d98d36f2d3da5136cb69428125455fe55) @@ -7,7 +7,6 @@ using System.Reflection.Emit; using DelftTools.Utils.Aop; using DelftTools.Utils.Reflection; -using DelftTools.Utils.Tests.Reflection.TestClasses; using NUnit.Framework; using DescriptionAttribute = System.ComponentModel.DescriptionAttribute; @@ -441,5 +440,15 @@ { public string OtherName { get; set; } } + + public class BaseClass + { + public object Data { get; set; } + } + + public class OverridingClass : BaseClass + { + public int Data { get; set; } + } } } \ No newline at end of file Index: test/Common/SharpMap.Tests/Rendering/Thematics/GradientThemeTest.cs =================================================================== diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r98210d0d98d36f2d3da5136cb69428125455fe55 --- test/Common/SharpMap.Tests/Rendering/Thematics/GradientThemeTest.cs (.../GradientThemeTest.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) +++ test/Common/SharpMap.Tests/Rendering/Thematics/GradientThemeTest.cs (.../GradientThemeTest.cs) (revision 98210d0d98d36f2d3da5136cb69428125455fe55) @@ -1,7 +1,6 @@ using System.Collections.Generic; using System.Drawing; using DelftTools.TestUtils; -using log4net; using NUnit.Framework; using SharpMap.Rendering.Thematics; using SharpMap.Styles; @@ -11,8 +10,6 @@ [TestFixture] public class GradientThemeTest { - private static readonly ILog log = LogManager.GetLogger(typeof(GradientThemeTest)); - [Test] public void ReturnMaxColorForMaxValue() { Index: test/Common/SharpMapTestUtils/TestClasses/SampleFeature.cs =================================================================== diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r98210d0d98d36f2d3da5136cb69428125455fe55 --- test/Common/SharpMapTestUtils/TestClasses/SampleFeature.cs (.../SampleFeature.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) +++ test/Common/SharpMapTestUtils/TestClasses/SampleFeature.cs (.../SampleFeature.cs) (revision 98210d0d98d36f2d3da5136cb69428125455fe55) @@ -7,13 +7,6 @@ [Entity(FireOnCollectionChange = false)] public class SampleFeature : IFeature { - public SampleFeature() {} - - public SampleFeature(int i) - { - IntegerProperty = i; - } - [FeatureAttribute] public int IntegerProperty { get; set; } Fisheye: Tag 98210d0d98d36f2d3da5136cb69428125455fe55 refers to a dead (removed) revision in file `test/DeltaShell/DeltaShell.Tests/Core/PluginConfigurationLoaderTest.cs'. Fisheye: No comparison available. Pass `N' to diff? Index: test/DeltaShell/DeltaShell.Tests/DeltaShell.Tests.csproj =================================================================== diff -u -rd0dbd788fc8d74e7462c6abc40a2edb420426ea9 -r98210d0d98d36f2d3da5136cb69428125455fe55 --- test/DeltaShell/DeltaShell.Tests/DeltaShell.Tests.csproj (.../DeltaShell.Tests.csproj) (revision d0dbd788fc8d74e7462c6abc40a2edb420426ea9) +++ test/DeltaShell/DeltaShell.Tests/DeltaShell.Tests.csproj (.../DeltaShell.Tests.csproj) (revision 98210d0d98d36f2d3da5136cb69428125455fe55) @@ -113,7 +113,6 @@ ToolWindowTestControl.cs - UserControl Index: test/DeltaShell/DeltaShell.Tests/Gui/DelftShellGuiTests.cs =================================================================== diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r98210d0d98d36f2d3da5136cb69428125455fe55 --- test/DeltaShell/DeltaShell.Tests/Gui/DelftShellGuiTests.cs (.../DelftShellGuiTests.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) +++ test/DeltaShell/DeltaShell.Tests/Gui/DelftShellGuiTests.cs (.../DelftShellGuiTests.cs) (revision 98210d0d98d36f2d3da5136cb69428125455fe55) @@ -4,15 +4,13 @@ using DeltaShell.Tests.TestObjects; using log4net.Core; using NUnit.Framework; -using Rhino.Mocks; using SharpTestsEx; namespace DeltaShell.Tests.Gui { [TestFixture] public class DeltaShellGuiTests { - private readonly MockRepository mocks = new MockRepository(); private DeltaShellGui gui; [SetUp] Index: test/DeltaShell/DeltaShell.Tests/Gui/ToolWindowTestControl.cs =================================================================== diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r98210d0d98d36f2d3da5136cb69428125455fe55 --- test/DeltaShell/DeltaShell.Tests/Gui/ToolWindowTestControl.cs (.../ToolWindowTestControl.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) +++ test/DeltaShell/DeltaShell.Tests/Gui/ToolWindowTestControl.cs (.../ToolWindowTestControl.cs) (revision 98210d0d98d36f2d3da5136cb69428125455fe55) @@ -6,12 +6,6 @@ { public partial class ToolWindowTestControl : UserControl, IView { - public ToolWindowTestControl(string name) - { - Name = name; - Initialize(); - } - public ToolWindowTestControl() { Initialize();