FbxIOPluginRegistryTest.cs 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. // ***********************************************************************
  2. // Copyright (c) 2017 Unity Technologies. All rights reserved.
  3. //
  4. // Licensed under the ##LICENSENAME##.
  5. // See LICENSE.md file in the project root for full license information.
  6. // ***********************************************************************
  7. using NUnit.Framework;
  8. using System.Collections;
  9. using Autodesk.Fbx;
  10. namespace Autodesk.Fbx.UnitTests
  11. {
  12. public class FbxIOPluginRegistryTest
  13. {
  14. #if ENABLE_COVERAGE_TEST
  15. [Test]
  16. public void TestCoverage ()
  17. {
  18. CoverageTester.TestCoverage (typeof(FbxIOPluginRegistry), this.GetType ());
  19. }
  20. #endif
  21. [Test]
  22. public void TestBasics ()
  23. {
  24. using (FbxManager manager = FbxManager.Create ()) {
  25. int fileFormat = manager.GetIOPluginRegistry ().FindWriterIDByDescription ("FBX ascii (*.fbx)");
  26. Assert.GreaterOrEqual (fileFormat, 0); // just check that it is something other than -1
  27. // test an invalid format
  28. fileFormat = manager.GetIOPluginRegistry ().FindWriterIDByDescription ("invalid format");
  29. Assert.AreEqual (-1, fileFormat);
  30. // test null
  31. Assert.That (() => { manager.GetIOPluginRegistry ().FindWriterIDByDescription (null); }, Throws.Exception.TypeOf<System.ArgumentNullException>());
  32. // test dispose
  33. // TODO: Dispose doesn't really seem useful here, should we do anything about it?
  34. manager.GetIOPluginRegistry ().Dispose ();
  35. fileFormat = manager.GetIOPluginRegistry ().FindWriterIDByDescription ("invalid format");
  36. Assert.AreEqual (-1, fileFormat);
  37. }
  38. }
  39. }
  40. }