Index: test/DeltaShell/DeltaShell.Tests/TestObjects/TestExporter.cs =================================================================== diff -u -r8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9 -r5fc71a385897af92ccb092f2f969b5709afab85a --- test/DeltaShell/DeltaShell.Tests/TestObjects/TestExporter.cs (.../TestExporter.cs) (revision 8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9) +++ test/DeltaShell/DeltaShell.Tests/TestObjects/TestExporter.cs (.../TestExporter.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) @@ -9,11 +9,30 @@ { public string Name { - get { return "test exporter"; } + get + { + return "test exporter"; + } } - public string Category { get { return "General"; } } + public string Category + { + get + { + return "General"; + } + } + public string FileFilter + { + get + { + throw new NotImplementedException(); + } + } + + public Bitmap Icon { get; private set; } + public bool Export(object item, string path) { throw new NotImplementedException(); @@ -24,12 +43,6 @@ throw new NotImplementedException(); } - public string FileFilter - { - get { throw new NotImplementedException(); } - } - - public Bitmap Icon { get; private set; } public bool CanExportFor(object item) { return true;