Index: test/Common/DelftTools.TestUtils/TestHelper.cs =================================================================== diff -u -r65f2e7d6ac377e64d885b6379ba3553a2deef981 -r7eed8f9cfa868b199699b1fbf58bcde2c9271d84 --- test/Common/DelftTools.TestUtils/TestHelper.cs (.../TestHelper.cs) (revision 65f2e7d6ac377e64d885b6379ba3553a2deef981) +++ test/Common/DelftTools.TestUtils/TestHelper.cs (.../TestHelper.cs) (revision 7eed8f9cfa868b199699b1fbf58bcde2c9271d84) @@ -12,7 +12,6 @@ using System.Windows.Forms; using System.Xml.Linq; using DelftTools.Utils.IO; -using log4net; using log4net.Appender; using log4net.Config; using log4net.Core; @@ -23,7 +22,6 @@ { public class TestHelper { - private static readonly ILog log = LogManager.GetLogger(typeof(TestHelper)); private static string solutionRoot; private static int assertInTestMethod; private static string lastTestName; Fisheye: Tag 7eed8f9cfa868b199699b1fbf58bcde2c9271d84 refers to a dead (removed) revision in file `test/Common/DelftTools.Utils.Tests/Aop/TestClasses/ClassImplementingIEventedList.cs'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 7eed8f9cfa868b199699b1fbf58bcde2c9271d84 refers to a dead (removed) revision in file `test/Common/DelftTools.Utils.Tests/Aop/TestClasses/ProblemChildObject.cs'. Fisheye: No comparison available. Pass `N' to diff? Index: test/Common/DelftTools.Utils.Tests/Collections/Generic/EventedListTest.cs =================================================================== diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r7eed8f9cfa868b199699b1fbf58bcde2c9271d84 --- test/Common/DelftTools.Utils.Tests/Collections/Generic/EventedListTest.cs (.../EventedListTest.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) +++ test/Common/DelftTools.Utils.Tests/Collections/Generic/EventedListTest.cs (.../EventedListTest.cs) (revision 7eed8f9cfa868b199699b1fbf58bcde2c9271d84) @@ -4,16 +4,13 @@ using DelftTools.TestUtils; using DelftTools.Utils.Collections; using DelftTools.Utils.Collections.Generic; -using log4net; using NUnit.Framework; namespace DelftTools.Utils.Tests.Collections.Generic { [TestFixture] public class EventedListTest { - private static readonly ILog log = LogManager.GetLogger(typeof(EventedListTest)); - [SetUp] public void SetUp() { Index: test/Common/DelftTools.Utils.Tests/DelftTools.Utils.Tests.csproj =================================================================== diff -u -r98210d0d98d36f2d3da5136cb69428125455fe55 -r7eed8f9cfa868b199699b1fbf58bcde2c9271d84 --- test/Common/DelftTools.Utils.Tests/DelftTools.Utils.Tests.csproj (.../DelftTools.Utils.Tests.csproj) (revision 98210d0d98d36f2d3da5136cb69428125455fe55) +++ test/Common/DelftTools.Utils.Tests/DelftTools.Utils.Tests.csproj (.../DelftTools.Utils.Tests.csproj) (revision 7eed8f9cfa868b199699b1fbf58bcde2c9271d84) @@ -81,11 +81,9 @@ - - Index: test/Common/DelftTools.Utils.Tests/General/TypeConverterTest.cs =================================================================== diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r7eed8f9cfa868b199699b1fbf58bcde2c9271d84 --- test/Common/DelftTools.Utils.Tests/General/TypeConverterTest.cs (.../TypeConverterTest.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) +++ test/Common/DelftTools.Utils.Tests/General/TypeConverterTest.cs (.../TypeConverterTest.cs) (revision 7eed8f9cfa868b199699b1fbf58bcde2c9271d84) @@ -13,12 +13,6 @@ { Assert.AreEqual(12, TypeConverter.ConvertValueToTargetType("12")); - IFormatProvider providerEN = new CultureInfo("en-US", true); - IFormatProvider providerTR = new CultureInfo("tr-TR", true); - - // DateTime x = TConverter.ConvertValueToTargetType("12.10.2007", providerTR); // ddMMyyyy - // DateTime y = TConverter.ConvertValueToTargetType("12.10.2007", providerEN); // MMddyyyy - TypeConverter.RegisterTypeConverter(); Assert.AreEqual(123, TypeConverter.ConvertValueToTargetType("123")); Index: test/Common/DelftTools.Utils.Tests/Xml/Serialization/TestClasses/XmlValidator.cs =================================================================== diff -u -r8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9 -r7eed8f9cfa868b199699b1fbf58bcde2c9271d84 --- test/Common/DelftTools.Utils.Tests/Xml/Serialization/TestClasses/XmlValidator.cs (.../XmlValidator.cs) (revision 8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9) +++ test/Common/DelftTools.Utils.Tests/Xml/Serialization/TestClasses/XmlValidator.cs (.../XmlValidator.cs) (revision 7eed8f9cfa868b199699b1fbf58bcde2c9271d84) @@ -12,7 +12,7 @@ // variable declarations private readonly string xmlFileName; private readonly string schemaFileName; - private bool failed = false; + private bool failed; //public XmlValidator() //{ Index: test/Common/SharpMap.Tests/Data/Providers/FeatureCollectionTest.cs =================================================================== diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r7eed8f9cfa868b199699b1fbf58bcde2c9271d84 --- test/Common/SharpMap.Tests/Data/Providers/FeatureCollectionTest.cs (.../FeatureCollectionTest.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) +++ test/Common/SharpMap.Tests/Data/Providers/FeatureCollectionTest.cs (.../FeatureCollectionTest.cs) (revision 7eed8f9cfa868b199699b1fbf58bcde2c9271d84) @@ -1,5 +1,4 @@ using System; -using System.Collections; using System.Collections.Generic; using System.ComponentModel; using DelftTools.Utils; @@ -20,8 +19,7 @@ [ExpectedException(typeof(ArgumentException))] public void AddingInvalidTypeGivesArgumentException() { - IList list = new List(); - var featureCollection = new FeatureCollection(list, typeof(string)); + new FeatureCollection(new List(), typeof(string)); } [Test]