Index: test/DeltaShell/DeltaShell.Tests/TestObjects/TestImporter.cs =================================================================== diff -u -r8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9 -r5fc71a385897af92ccb092f2f969b5709afab85a --- test/DeltaShell/DeltaShell.Tests/TestObjects/TestImporter.cs (.../TestImporter.cs) (revision 8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9) +++ test/DeltaShell/DeltaShell.Tests/TestObjects/TestImporter.cs (.../TestImporter.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) @@ -9,45 +9,69 @@ { public string Name { - get { return "Test Importer"; } + get + { + return "Test Importer"; + } } public string Category { get; private set; } - + public Bitmap Image { get; private set; } - public bool CanImportOn(object targetObject) - { - throw new NotImplementedException(); - } - public bool CanImportOnRootLevel { - get { return true; } + get + { + return true; + } } public IEnumerable SupportedItemTypes { - get { throw new NotImplementedException(); } + get + { + throw new NotImplementedException(); + } } public string FileFilter { - get { throw new NotImplementedException(); } + get + { + throw new NotImplementedException(); + } } - public bool OpenViewAfterImport { get { return false; } } + public bool OpenViewAfterImport + { + get + { + return false; + } + } public string TargetDataDirectory { - get { throw new NotImplementedException(); } - set { throw new NotImplementedException(); } + get + { + throw new NotImplementedException(); + } + set + { + throw new NotImplementedException(); + } } public bool ShouldCancel { get; set; } public ImportProgressChangedDelegate ProgressChanged { get; set; } + public bool CanImportOn(object targetObject) + { + throw new NotImplementedException(); + } + public object ImportItem(string path, object target = null) { throw new NotImplementedException();