Merge pull request #2996 from jlewin/design_tools

Workarounds for failing tests
This commit is contained in:
johnlewin 2018-02-08 23:03:56 -08:00 committed by GitHub
commit e6b1717ab0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 0 deletions

View file

@ -52,6 +52,10 @@ namespace MatterHackers.MatterControl.PartPreviewWindow
public Type DefaultView => null;
public BranchEditContainer()
{
}
public BranchEditContainer(Action<ILibraryItem, IObject3D> saveAction)
{
this.saveAction = saveAction;
@ -72,6 +76,7 @@ namespace MatterHackers.MatterControl.PartPreviewWindow
public void Add(IEnumerable<ILibraryItem> items)
{
this.ContentChanged?.Invoke(this, null);
}
public bool AllowAction(ContainerActions containerActions)

View file

@ -224,6 +224,10 @@ namespace MatterControl.Tests.MatterControl
onIdlePumpActive = false;
}
[Test, Ignore("Not implemented")]
public async Task BranchEditContainerTest()
{
}
[Test, Ignore("Not implemented")]
public async Task CalibrationPartsContainerTest()