New library code to support provider pluggins for things like

cloud library
drop box
file system folders
etc...
This commit is contained in:
Lars Brubaker 2015-06-10 17:53:17 -07:00
parent fd3b1c07d9
commit 038b40ada6
15 changed files with 231 additions and 70 deletions

View file

@ -42,6 +42,7 @@ namespace MatterHackers.MatterControl.SlicerConfiguration.Tests
[Test]
public void AsPercentOfReferenceOrDirectTests()
{
#if !__ANDROID__
// Set the static data to point to the directory of MatterControl
StaticData.Instance = new MatterHackers.Agg.FileSystemStaticData(Path.Combine("..", "..", "..", ".."));
@ -83,6 +84,7 @@ namespace MatterHackers.MatterControl.SlicerConfiguration.Tests
AsPercentOfReferenceOrDirect mapper2 = new AsPercentOfReferenceOrDirect("notused", "primary", "reference", 1000);
Assert.IsTrue(mapper2.MappedValue == "100000");
}
#endif
}
}
}