Index: Core/Plugins/test/Core.Plugins.DotSpatial.Test/Commands/ToggleMapLegendViewCommandTest.cs =================================================================== diff -u -r3167b898b071fea4cf86c775bca5467fab086038 -r22cb2d9d1401e7c89e608f1f03f319d583648e38 --- Core/Plugins/test/Core.Plugins.DotSpatial.Test/Commands/ToggleMapLegendViewCommandTest.cs (.../ToggleMapLegendViewCommandTest.cs) (revision 3167b898b071fea4cf86c775bca5467fab086038) +++ Core/Plugins/test/Core.Plugins.DotSpatial.Test/Commands/ToggleMapLegendViewCommandTest.cs (.../ToggleMapLegendViewCommandTest.cs) (revision 22cb2d9d1401e7c89e608f1f03f319d583648e38) @@ -33,7 +33,7 @@ [Test] [TestCase(true)] [TestCase(false)] - public void Checekd_LegendViewOpenOrClosed_ReturnsExpectedState(bool open) + public void Checked_LegendViewOpenOrClosed_ReturnsExpectedState(bool open) { // Setup var mocks = new MockRepository(); Index: Core/Plugins/test/Core.Plugins.DotSpatial.Test/Core.Plugins.DotSpatial.Test.csproj =================================================================== diff -u -rd212065881d696420fd33c789c917501e09c7fc0 -r22cb2d9d1401e7c89e608f1f03f319d583648e38 --- Core/Plugins/test/Core.Plugins.DotSpatial.Test/Core.Plugins.DotSpatial.Test.csproj (.../Core.Plugins.DotSpatial.Test.csproj) (revision d212065881d696420fd33c789c917501e09c7fc0) +++ Core/Plugins/test/Core.Plugins.DotSpatial.Test/Core.Plugins.DotSpatial.Test.csproj (.../Core.Plugins.DotSpatial.Test.csproj) (revision 22cb2d9d1401e7c89e608f1f03f319d583648e38) @@ -43,10 +43,6 @@ ..\..\..\..\packages\Fluent.Ribbon.3.4.0\lib\net40\Fluent.dll True - - ..\..\..\..\packages\Fluent.Ribbon.3.4.0\lib\net40\Microsoft.Windows.Shell.dll - True - ..\..\..\..\packages\NUnit.2.6.4\lib\nunit.framework.dll True @@ -60,10 +56,6 @@ - - ..\..\..\..\packages\Fluent.Ribbon.3.4.0\lib\net40\System.Windows.Interactivity.dll - True - @@ -108,10 +100,6 @@ {F49BD8B2-332A-4C91-A196-8CCE0A2C7D98} Core.Common.Utils - - {D749EE4C-CE50-4C17-BF01-9A953028C126} - Core.Common.TestUtil - {AA47E858-A2A7-470E-8B2D-C76AE8ED9CCD} Core.Components.DotSpatial Index: Core/Plugins/test/Core.Plugins.DotSpatial.Test/DotSpatialGuiPluginTest.cs =================================================================== diff -u -r11ba203152ddf37106da76d9a38d4ffd771026dd -r22cb2d9d1401e7c89e608f1f03f319d583648e38 --- Core/Plugins/test/Core.Plugins.DotSpatial.Test/DotSpatialGuiPluginTest.cs (.../DotSpatialGuiPluginTest.cs) (revision 11ba203152ddf37106da76d9a38d4ffd771026dd) +++ Core/Plugins/test/Core.Plugins.DotSpatial.Test/DotSpatialGuiPluginTest.cs (.../DotSpatialGuiPluginTest.cs) (revision 22cb2d9d1401e7c89e608f1f03f319d583648e38) @@ -64,11 +64,11 @@ if (useMapView) { - var chartView = mocks.Stub(); - var chart = mocks.Stub(); - chart.Data = new TestMapData(); - chartView.Stub(v => v.Map).Return(chart); - view = chartView; + var mapView = mocks.Stub(); + var map = mocks.Stub(); + map.Data = new TestMapData(); + mapView.Stub(v => v.Map).Return(map); + view = mapView; } else {