Index: Application/Application.Ringtoets/App.xaml.cs =================================================================== diff -u -rf48e1f03fef1dd8f0bd623e308b3ee9234152e96 -rf6c37066281b4fb079758661aef9e15f0163b1e5 --- Application/Application.Ringtoets/App.xaml.cs (.../App.xaml.cs) (revision f48e1f03fef1dd8f0bd623e308b3ee9234152e96) +++ Application/Application.Ringtoets/App.xaml.cs (.../App.xaml.cs) (revision f6c37066281b4fb079758661aef9e15f0163b1e5) @@ -126,7 +126,6 @@ var applicationCore = new ApplicationCore(); - applicationCore.AddPlugin(new CommonToolsApplicationPlugin()); #if INCLUDE_DEMOPROJECT applicationCore.AddPlugin(new SharpMapGisApplicationPlugin()); #endif Index: Core/Common/test/Core.Common.Integration.Test/Ringtoets/Application.Ringtoets/RingtoetsGuiIntegrationTest.cs =================================================================== diff -u -rd6e6eadf4a2521df75b6d371bacbb181a43058a3 -rf6c37066281b4fb079758661aef9e15f0163b1e5 --- Core/Common/test/Core.Common.Integration.Test/Ringtoets/Application.Ringtoets/RingtoetsGuiIntegrationTest.cs (.../RingtoetsGuiIntegrationTest.cs) (revision d6e6eadf4a2521df75b6d371bacbb181a43058a3) +++ Core/Common/test/Core.Common.Integration.Test/Ringtoets/Application.Ringtoets/RingtoetsGuiIntegrationTest.cs (.../RingtoetsGuiIntegrationTest.cs) (revision f6c37066281b4fb079758661aef9e15f0163b1e5) @@ -1,11 +1,9 @@ using System; using System.Linq; -using Core.Common.Base; using Core.Common.Base.Data; using Core.Common.Gui; using Core.Common.TestUtil; using Core.GIS.SharpMap.Map; -using Core.Plugins.CommonTools; using Core.Plugins.CommonTools.Gui; using Core.Plugins.ProjectExplorer; using Core.Plugins.SharpMapGis; @@ -31,7 +29,6 @@ { var applicationCore = gui.ApplicationCore; - applicationCore.AddPlugin(new CommonToolsApplicationPlugin()); applicationCore.AddPlugin(new SharpMapGisApplicationPlugin()); gui.Plugins.Add(new ProjectExplorerGuiPlugin()); gui.Run(); @@ -58,7 +55,6 @@ { var applicationCore = gui.ApplicationCore; - applicationCore.AddPlugin(new CommonToolsApplicationPlugin()); applicationCore.AddPlugin(new SharpMapGisApplicationPlugin()); gui.Run(); @@ -78,7 +74,6 @@ { var applicationCore = gui.ApplicationCore; - applicationCore.AddPlugin(new CommonToolsApplicationPlugin()); applicationCore.AddPlugin(new SharpMapGisApplicationPlugin()); gui.Plugins.Add(new SharpMapGisGuiPlugin()); gui.Plugins.Add(new CommonToolsGuiPlugin()); @@ -99,7 +94,6 @@ { var applicationCore = gui.ApplicationCore; - applicationCore.AddPlugin(new CommonToolsApplicationPlugin()); applicationCore.AddPlugin(new SharpMapGisApplicationPlugin()); gui.Plugins.Add(new ProjectExplorerGuiPlugin()); @@ -170,7 +164,6 @@ { var applicationCore = gui.ApplicationCore; - applicationCore.AddPlugin(new CommonToolsApplicationPlugin()); applicationCore.AddPlugin(new SharpMapGisApplicationPlugin()); gui.Plugins.Add(new ProjectExplorerGuiPlugin()); Fisheye: Tag f6c37066281b4fb079758661aef9e15f0163b1e5 refers to a dead (removed) revision in file `Core/Plugins/src/Core.Plugins.CommonTools/CommonToolsApplicationPlugin.cs'. Fisheye: No comparison available. Pass `N' to diff? Index: Core/Plugins/src/Core.Plugins.CommonTools/Core.Plugins.CommonTools.csproj =================================================================== diff -u -r3f1a2b8718a744b49b160c89df46dee6b7fb5fdd -rf6c37066281b4fb079758661aef9e15f0163b1e5 --- Core/Plugins/src/Core.Plugins.CommonTools/Core.Plugins.CommonTools.csproj (.../Core.Plugins.CommonTools.csproj) (revision 3f1a2b8718a744b49b160c89df46dee6b7fb5fdd) +++ Core/Plugins/src/Core.Plugins.CommonTools/Core.Plugins.CommonTools.csproj (.../Core.Plugins.CommonTools.csproj) (revision f6c37066281b4fb079758661aef9e15f0163b1e5) @@ -77,7 +77,6 @@ Properties\GlobalAssembly.cs - @@ -116,12 +115,6 @@ true - - - - - - + + + + \ No newline at end of file Index: Core/Plugins/test/Core.Plugins.CommonTools.Gui.Test/CommonToolsGuiPluginTest.cs =================================================================== diff -u --- Core/Plugins/test/Core.Plugins.CommonTools.Gui.Test/CommonToolsGuiPluginTest.cs (revision 0) +++ Core/Plugins/test/Core.Plugins.CommonTools.Gui.Test/CommonToolsGuiPluginTest.cs (revision f6c37066281b4fb079758661aef9e15f0163b1e5) @@ -0,0 +1,79 @@ +using System.Linq; +using Core.Common.Base.Plugin; +using Core.Common.Controls.Swf; +using Core.Common.Controls.Swf.Charting; +using Core.Common.Gui; +using Core.Common.Gui.Forms; +using Core.Common.Gui.Forms.MainWindow; +using Core.Common.Utils; +using Core.Plugins.CommonTools.Gui.Forms; +using Core.Plugins.CommonTools.Gui.Forms.Charting; +using Core.Plugins.CommonTools.Gui.Property.Charting; +using NUnit.Framework; +using Rhino.Mocks; + +namespace Core.Plugins.CommonTools.Gui.Test +{ + [TestFixture] + public class CommonToolsGuiPluginTest + { + private static readonly MockRepository mocks = new MockRepository(); + + [Test] + public void ChartLegendViewIsUpdatedForCurrentActiveView() + { + var gui = mocks.Stub(); + var applicationCore = mocks.Stub(); + var pluginGui = new CommonToolsGuiPlugin(); + var mainWindow = mocks.Stub(); + var toolWindowViews = new TestViewList(); + var documentViews = new TestViewList(); + var chartView = new ChartView(); + + gui.Expect(g => g.ApplicationCore).Return(applicationCore).Repeat.Any(); + gui.Expect(g => g.DocumentViews).Return(documentViews).Repeat.Any(); + gui.Expect(g => g.ToolWindowViews).Return(toolWindowViews).Repeat.Any(); + gui.Expect(g => g.MainWindow).Return(mainWindow).Repeat.Any(); + mainWindow.Expect(w => w.Visible).Return(true).Repeat.Any(); + + mocks.ReplayAll(); + + documentViews.Add(chartView); + + pluginGui.Gui = gui; + pluginGui.Activate(); + + documentViews.ActiveView = chartView; + + var chartLegendView = gui.ToolWindowViews.OfType().FirstOrDefault(); + + Assert.IsNotNull(chartLegendView); + Assert.AreEqual(chartView.Data, chartLegendView.Data); + + mocks.VerifyAll(); + } + + [Test] + public void TestGetObjectProperties() + { + var guiPlugin = new CommonToolsGuiPlugin(); + var propertyInfos = guiPlugin.GetPropertyInfos().ToList(); + + var propertyInfo = propertyInfos.First(pi => pi.ObjectType == typeof(IChart)); + Assert.AreEqual(typeof(ChartProperties), propertyInfo.PropertyType); + } + + [Test] + public void TestGetViewInfoObjectsContent() + { + var guiPlugin = new CommonToolsGuiPlugin(); + var viewInfos = guiPlugin.GetViewInfoObjects().ToList(); + + Assert.NotNull(viewInfos); + Assert.IsTrue(viewInfos.Any(vi => vi.DataType == typeof(RichTextFile) && vi.ViewType == typeof(RichTextView))); + Assert.IsTrue(viewInfos.Any(vi => vi.DataType == typeof(TextDocument) && vi.ViewType == typeof(TextDocumentView))); + Assert.IsTrue(viewInfos.Any(vi => vi.DataType == typeof(Url) && vi.ViewType == typeof(HtmlPageView))); + Assert.IsTrue(viewInfos.Any(vi => vi.DataType == typeof(Chart) && vi.ViewType == typeof(ChartView))); + } + } +} \ No newline at end of file Index: Core/Plugins/test/Core.Plugins.CommonTools.Gui.Test/Core.Plugins.CommonTools.Gui.Test.csproj =================================================================== diff -u --- Core/Plugins/test/Core.Plugins.CommonTools.Gui.Test/Core.Plugins.CommonTools.Gui.Test.csproj (revision 0) +++ Core/Plugins/test/Core.Plugins.CommonTools.Gui.Test/Core.Plugins.CommonTools.Gui.Test.csproj (revision f6c37066281b4fb079758661aef9e15f0163b1e5) @@ -0,0 +1,145 @@ + + + + Debug + x86 + 9.0.30729 + 2.0 + {8BD31773-6F6D-42EE-810D-0A5DAD809F9D} + Library + Properties + Core.Plugins.CommonTools.Gui.Test + Core.Plugins.CommonTools.Gui.Test + v4.0 + 512 + + + 3.5 + + false + publish\ + true + Disk + false + Foreground + 7 + Days + false + false + true + 0 + 1.0.0.%2a + false + true + + + true + bin\Debug\ + 4 + x86 + MinimumRecommendedRules.ruleset + TRACE;DEBUG + full + + + bin\Release\ + 4 + x86 + MinimumRecommendedRules.ruleset + TRACE + true + + + bin\ReleaseForCodeCoverage\ + TRACE + true + pdbonly + x86 + prompt + MinimumRecommendedRules.ruleset + + + + ..\..\..\..\packages\NUnit.2.6.4\lib\nunit.framework.dll + True + + + ..\..\..\..\packages\RhinoMocks.3.6.1\lib\net\Rhino.Mocks.dll + True + + + + 3.5 + + + + + + + + + + + + + + + {3bbfd65b-b277-4e50-ae6d-bd24c3434609} + Core.Common.Base + + + {08205620-D756-4533-922C-D6A4C0038535} + Core.Common.Gui.Swf + + + {F49BD8B2-332A-4C91-A196-8CCE0A2C7D98} + Core.Common.Utils + + + {93E73FAB-FAE8-49C6-9ABB-27D24DF761F6} + Core.Plugins.CommonTools.Gui + + + {3DBD23CE-5C4A-4A49-B51C-B268CB2B510E} + Core.Common.Controls.Swf + + + {9A2D67E6-26AC-4D17-B11A-2B4372F2F572} + Core.Common.Controls + + + {30E4C2AE-719E-4D70-9FA9-668A9767FBFA} + Core.Common.Gui + + + + + False + .NET Framework 3.5 SP1 Client Profile + false + + + False + .NET Framework 3.5 SP1 + true + + + False + Windows Installer 3.1 + true + + + + + + + + + + \ No newline at end of file Index: Core/Plugins/test/Core.Plugins.CommonTools.Gui.Test/Forms/Charting/ChartTreeNodePresenterTest.cs =================================================================== diff -u --- Core/Plugins/test/Core.Plugins.CommonTools.Gui.Test/Forms/Charting/ChartTreeNodePresenterTest.cs (revision 0) +++ Core/Plugins/test/Core.Plugins.CommonTools.Gui.Test/Forms/Charting/ChartTreeNodePresenterTest.cs (revision f6c37066281b4fb079758661aef9e15f0163b1e5) @@ -0,0 +1,69 @@ +using System.Collections; +using Core.Common.Controls.Swf.Charting; +using Core.Common.Controls.Swf.TreeViewControls; +using Core.Common.Gui; +using Core.Plugins.CommonTools.Gui.Forms.Charting; +using NUnit.Framework; +using Rhino.Mocks; + +namespace Core.Plugins.CommonTools.Gui.Test.Forms.Charting +{ + [TestFixture] + public class ChartTreeNodePresenterTest + { + [Test] + public void CanInsert_TreeViewHasSorter_ReturnFalse() + { + // Setup + var mocks = new MockRepository(); + var sourceNode = mocks.Stub(); + var targetNode = mocks.Stub(); + + var treeView = mocks.Stub(); + + var chart = mocks.Stub(); + + var guiPlugin = mocks.Stub(); + treeView.TreeViewNodeSorter = mocks.Stub(); + + mocks.ReplayAll(); + + var nodePresenter = new ChartTreeNodePresenter() { TreeView = treeView }; + + // Call + var insertionAllowed = nodePresenter.CanInsert(chart, sourceNode, targetNode); + + // Assert + Assert.IsFalse(insertionAllowed); + mocks.VerifyAll(); + } + + [Test] + public void CanInsert_TreeViewDoesNotHaveSorter_ReturnTrue() + { + // Setup + var mocks = new MockRepository(); + var sourceNode = mocks.Stub(); + var targetNode = mocks.Stub(); + + var treeView = mocks.Stub(); + + var chart = mocks.Stub(); + + var guiPlugin = mocks.Stub(); + mocks.ReplayAll(); + + // Precondition + Assert.IsNull(treeView.TreeViewNodeSorter); + + var nodePresenter = new ChartTreeNodePresenter() { TreeView = treeView }; + + // Call + var insertionAllowed = nodePresenter.CanInsert(chart, sourceNode, targetNode); + + // Assert + Assert.IsTrue(insertionAllowed); + mocks.VerifyAll(); + } + } +} \ No newline at end of file Index: Core/Plugins/test/Core.Plugins.CommonTools.Gui.Test/Forms/TextDocumentViewTest.cs =================================================================== diff -u --- Core/Plugins/test/Core.Plugins.CommonTools.Gui.Test/Forms/TextDocumentViewTest.cs (revision 0) +++ Core/Plugins/test/Core.Plugins.CommonTools.Gui.Test/Forms/TextDocumentViewTest.cs (revision f6c37066281b4fb079758661aef9e15f0163b1e5) @@ -0,0 +1,26 @@ +using Core.Common.Utils; +using Core.Plugins.CommonTools.Gui.Forms; +using NUnit.Framework; + +namespace Core.Plugins.CommonTools.Gui.Test.Forms +{ + [TestFixture] + public class TextDocumentViewTest + { + [Test] + public void SetNullDataInDocumentView() + { + var textDocument = new TextDocument(true) + { + Content = "Lorem ipsum" + }; + + var textDocumentView = new TextDocumentView + { + Data = textDocument + }; + + textDocumentView.Data = null; // Note: this should not cause an exception + } + } +} \ No newline at end of file Index: Core/Plugins/test/Core.Plugins.CommonTools.Gui.Test/Properties/AssemblyInfo.cs =================================================================== diff -u --- Core/Plugins/test/Core.Plugins.CommonTools.Gui.Test/Properties/AssemblyInfo.cs (revision 0) +++ Core/Plugins/test/Core.Plugins.CommonTools.Gui.Test/Properties/AssemblyInfo.cs (revision f6c37066281b4fb079758661aef9e15f0163b1e5) @@ -0,0 +1,15 @@ +using System.Reflection; +using System.Runtime.InteropServices; +using NUnit.Framework; + +[assembly: AssemblyTitle("Core.Plugins.CommonTools.Gui.Test")] +[assembly: AssemblyProduct("Core.Plugins.CommonTools.Gui.Test")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("82c29020-3858-41c9-b8f1-ed15e4ec338b")] +[assembly: RequiresSTA] \ No newline at end of file Index: Core/Plugins/test/Core.Plugins.CommonTools.Gui.Test/TestViewList.cs =================================================================== diff -u --- Core/Plugins/test/Core.Plugins.CommonTools.Gui.Test/TestViewList.cs (revision 0) +++ Core/Plugins/test/Core.Plugins.CommonTools.Gui.Test/TestViewList.cs (revision f6c37066281b4fb079758661aef9e15f0163b1e5) @@ -0,0 +1,162 @@ +using System; +using System.Collections; +using System.Collections.Generic; +using System.Linq; +using Core.Common.Controls; +using Core.Common.Gui; +using Core.Common.Utils.Collections; + +namespace Core.Plugins.CommonTools.Gui.Test +{ + public class TestViewList : IViewList + { +// Required by interface, but not used (yet) +#pragma warning disable 67 + public event NotifyCollectionChangedEventHandler CollectionChanged; + + public event EventHandler ActiveViewChanging; + + public event NotifyCollectionChangedEventHandler ChildViewChanged; +#pragma warning restore 67 + public event EventHandler ActiveViewChanged; + + private readonly IList views = new List(); + private IView activeView; + + public IView this[int index] + { + get + { + throw new NotImplementedException(); + } + set + { + throw new NotImplementedException(); + } + } + + public int Count { get; private set; } + + public bool IsReadOnly { get; private set; } + + public bool IgnoreActivation { get; set; } + + public IView ActiveView + { + get + { + return activeView; + } + set + { + activeView = value; + OnActiveViewChanged(activeView); + } + } + + public IEnumerable AllViews { get; private set; } + + public void OnActiveViewChanged(IView activeView) + { + if (ActiveViewChanged != null) + { + ActiveViewChanged(this, new ActiveViewChangeEventArgs + { + View = activeView + }); + } + } + + public void AddRange(IEnumerable enumerable) + { + throw new NotImplementedException(); + } + + public IEnumerator GetEnumerator() + { + return views.GetEnumerator(); + } + + IEnumerator IEnumerable.GetEnumerator() + { + return GetEnumerator(); + } + + public void Add(IView item) + { + views.Add(item); + } + + public void Clear() + { + throw new NotImplementedException(); + } + + public bool Contains(IView item) + { + throw new NotImplementedException(); + } + + public void CopyTo(IView[] array, int arrayIndex) + { + throw new NotImplementedException(); + } + + public bool Remove(IView item) + { + return views.Remove(item); + } + + public int IndexOf(IView item) + { + throw new NotImplementedException(); + } + + public void Insert(int index, IView item) + { + throw new NotImplementedException(); + } + + public void RemoveAt(int index) + { + throw new NotImplementedException(); + } + + public void Add(IView view, ViewLocation viewLocation) + { + Add(view); + } + + public void Clear(IView view) + { + throw new NotImplementedException(); + } + + public void SetTooltip(IView view, string tooltip) + { + throw new NotImplementedException(); + } + + public void UpdateViewName(IView view) + { + throw new NotImplementedException(); + } + + public void UpdateToolTips() + { + throw new NotImplementedException(); + } + + public IEnumerable GetActiveViews() where T : class, IView + { + return views.OfType(); + } + + public IEnumerable FindViewsRecursive(IEnumerable views) where T : class, IView + { + throw new NotImplementedException(); + } + + public void Dispose() {} + } +} \ No newline at end of file Index: Core/Plugins/test/Core.Plugins.CommonTools.Gui.Test/packages.config =================================================================== diff -u --- Core/Plugins/test/Core.Plugins.CommonTools.Gui.Test/packages.config (revision 0) +++ Core/Plugins/test/Core.Plugins.CommonTools.Gui.Test/packages.config (revision f6c37066281b4fb079758661aef9e15f0163b1e5) @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file Index: Core/Plugins/test/Core.Plugins.CommonTools.Gui.Test/test-data/TestPasteData_DutchDates.txt =================================================================== diff -u --- Core/Plugins/test/Core.Plugins.CommonTools.Gui.Test/test-data/TestPasteData_DutchDates.txt (revision 0) +++ Core/Plugins/test/Core.Plugins.CommonTools.Gui.Test/test-data/TestPasteData_DutchDates.txt (revision f6c37066281b4fb079758661aef9e15f0163b1e5) @@ -0,0 +1,60 @@ +1-1-2001 1 +2-1-2001 2 +3-1-2001 3 +4-1-2001 4 +5-1-2001 5 +6-1-2001 6 +7-1-2001 7 +8-1-2001 8 +9-1-2001 9 +10-1-2001 10 +11-1-2001 11 +12-1-2001 12 +13-1-2001 13 +14-1-2001 14 +15-1-2001 15 +16-1-2001 16 +17-1-2001 17 +18-1-2001 18 +19-1-2001 19 +20-1-2001 20 +21-1-2001 21 +22-1-2001 22 +23-1-2001 23 +24-1-2001 24 +25-1-2001 25 +26-1-2001 26 +27-1-2001 27 +28-1-2001 28 +29-1-2001 29 +30-1-2001 30 +31-1-2001 31 +1-2-2001 32 +2-2-2001 33 +3-2-2001 34 +4-2-2001 35 +5-2-2001 36 +6-2-2001 37 +7-2-2001 38 +8-2-2001 39 +9-2-2001 40 +10-2-2001 41 +11-2-2001 42 +12-2-2001 43 +13-2-2001 44 +14-2-2001 45 +15-2-2001 46 +16-2-2001 47 +17-2-2001 48 +18-2-2001 49 +19-2-2001 50 +20-2-2001 51 +21-2-2001 52 +22-2-2001 53 +23-2-2001 54 +24-2-2001 55 +25-2-2001 56 +26-2-2001 57 +27-2-2001 58 +28-2-2001 59 +1-3-2001 60 \ No newline at end of file Index: Core/Plugins/test/Core.Plugins.CommonTools.Gui.Test/test-data/restart.zip =================================================================== diff -u Binary files differ Index: Core/Plugins/test/Core.Plugins.CommonTools.Gui.Test/test-data/timeseries.csv =================================================================== diff -u --- Core/Plugins/test/Core.Plugins.CommonTools.Gui.Test/test-data/timeseries.csv (revision 0) +++ Core/Plugins/test/Core.Plugins.CommonTools.Gui.Test/test-data/timeseries.csv (revision f6c37066281b4fb079758661aef9e15f0163b1e5) @@ -0,0 +1,16 @@ +time, water level (station1), water level (station2) +2003-03-01 01:00:00,-999,-999 +2003-03-01 01:15:00,1.000,1.000 +2003-03-01 01:30:00,2.000,2.000 +2003-03-01 01:45:00,3.000,3.000 +2003-03-01 02:00:00,4.000,4.000 +2003-03-01 02:15:00,-999,5.000 +2003-03-01 02:30:00,6.000,6.000 +2003-03-01 02:45:00,7.000,7.000 +2003-03-01 03:00:00,8.000,8.000 +2003-03-01 03:15:00,9.000,9.000 +2003-03-01 03:30:00,10.000,10.000 +2003-03-01 03:45:00,11.000,11.000 +2003-03-01 04:00:00,12.000,12.000 +2003-03-01 04:15:00,13.000,13.000 +2003-03-01 04:30:00,14.000,14.986 \ No newline at end of file Index: Core/Plugins/test/Core.Plugins.CommonTools.Gui.Test/test-data/timeseries_errors.csv =================================================================== diff -u --- Core/Plugins/test/Core.Plugins.CommonTools.Gui.Test/test-data/timeseries_errors.csv (revision 0) +++ Core/Plugins/test/Core.Plugins.CommonTools.Gui.Test/test-data/timeseries_errors.csv (revision f6c37066281b4fb079758661aef9e15f0163b1e5) @@ -0,0 +1,16 @@ +time, water level (station1), water level (station2) +2003-03-01 01:00:00,-999,-999 +2003-03-01 01:15:00,1.000,1.000 +2003-03-01 01:30:00,, +2003-03-01 01:45:00,3.000,3.000 +2003-03-01 02:00:00,4.000,4.000 +2003-03-01 02:15:00,-999,5.000 +2003-03-01 02:30:00,6.000,6.000 +2003-03-01 02:45:00,7.000,7.000 +2003-03-01 03:00:00,8.000,8.000 +2003-03-01 03:15:00,9.000,9.000 +2003-03-01 03:30:00,10.000,10.xxx +2003-03-01 03:45:00,11.000,11.xxx +2003-03-01 04:00:00,12.000,12.xxx +2003-03-01 04:15:00,13.000,13.000 +2003-03-01 04:30:00,14.000,14.986 \ No newline at end of file Fisheye: Tag f6c37066281b4fb079758661aef9e15f0163b1e5 refers to a dead (removed) revision in file `Core/Plugins/test/Core.Plugins.CommonTools.Test/App.config'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag f6c37066281b4fb079758661aef9e15f0163b1e5 refers to a dead (removed) revision in file `Core/Plugins/test/Core.Plugins.CommonTools.Test/CommonToolsGuiPluginTest.cs'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag f6c37066281b4fb079758661aef9e15f0163b1e5 refers to a dead (removed) revision in file `Core/Plugins/test/Core.Plugins.CommonTools.Test/Core.Plugins.CommonTools.Test.csproj'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag f6c37066281b4fb079758661aef9e15f0163b1e5 refers to a dead (removed) revision in file `Core/Plugins/test/Core.Plugins.CommonTools.Test/Forms/Charting/ChartTreeNodePresenterTest.cs'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag f6c37066281b4fb079758661aef9e15f0163b1e5 refers to a dead (removed) revision in file `Core/Plugins/test/Core.Plugins.CommonTools.Test/Forms/TextDocumentViewTest.cs'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag f6c37066281b4fb079758661aef9e15f0163b1e5 refers to a dead (removed) revision in file `Core/Plugins/test/Core.Plugins.CommonTools.Test/Properties/AssemblyInfo.cs'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag f6c37066281b4fb079758661aef9e15f0163b1e5 refers to a dead (removed) revision in file `Core/Plugins/test/Core.Plugins.CommonTools.Test/TestViewList.cs'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag f6c37066281b4fb079758661aef9e15f0163b1e5 refers to a dead (removed) revision in file `Core/Plugins/test/Core.Plugins.CommonTools.Test/packages.config'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag f6c37066281b4fb079758661aef9e15f0163b1e5 refers to a dead (removed) revision in file `Core/Plugins/test/Core.Plugins.CommonTools.Test/test-data/TestPasteData_DutchDates.txt'. Fisheye: No comparison available. Pass `N' to diff? Index: Core/Plugins/test/Core.Plugins.CommonTools.Test/test-data/restart.zip =================================================================== diff -u -r6633a5deea8082d57dec6185caf4ff428f034672 -rf6c37066281b4fb079758661aef9e15f0163b1e5 Binary files differ Fisheye: Tag f6c37066281b4fb079758661aef9e15f0163b1e5 refers to a dead (removed) revision in file `Core/Plugins/test/Core.Plugins.CommonTools.Test/test-data/timeseries.csv'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag f6c37066281b4fb079758661aef9e15f0163b1e5 refers to a dead (removed) revision in file `Core/Plugins/test/Core.Plugins.CommonTools.Test/test-data/timeseries_errors.csv'. Fisheye: No comparison available. Pass `N' to diff? Index: Ringtoets.sln =================================================================== diff -u -r75aa4fefacf584d5172dc3bdffd348b0aacb05a4 -rf6c37066281b4fb079758661aef9e15f0163b1e5 --- Ringtoets.sln (.../Ringtoets.sln) (revision 75aa4fefacf584d5172dc3bdffd348b0aacb05a4) +++ Ringtoets.sln (.../Ringtoets.sln) (revision f6c37066281b4fb079758661aef9e15f0163b1e5) @@ -104,7 +104,7 @@ EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Core.Plugins.SharpMapGis.Gui", "Core\Plugins\src\Core.Plugins.SharpMapGis.Gui\Core.Plugins.SharpMapGis.Gui.csproj", "{0BC3751E-EC42-40A0-A7D3-B7C2AA66976E}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Core.Plugins.CommonTools.Test", "Core\Plugins\test\Core.Plugins.CommonTools.Test\Core.Plugins.CommonTools.Test.csproj", "{8BD31773-6F6D-42EE-810D-0A5DAD809F9D}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Core.Plugins.CommonTools.Gui.Test", "Core\Plugins\test\Core.Plugins.CommonTools.Gui.Test\Core.Plugins.CommonTools.Gui.Test.csproj", "{8BD31773-6F6D-42EE-810D-0A5DAD809F9D}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Core.Plugins.ProjectExplorer.Test", "Core\Plugins\test\Core.Plugins.ProjectExplorer.Test\Core.Plugins.ProjectExplorer.Test.csproj", "{07206938-9671-4DC7-BDE4-35B0F6E20DBC}" EndProject