FbxIOSettingsTest.cs 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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 Autodesk.Fbx;
  9. namespace Autodesk.Fbx.UnitTests
  10. {
  11. public class FbxIOSettingsTest : Base<FbxIOSettings>
  12. {
  13. [Test]
  14. public void TestFVirtual ()
  15. {
  16. // Test the swig -fvirtual flag works properly: we can call virtual
  17. // functions defined on the base class without the function also
  18. // being defined in the subclass.
  19. FbxManager manager = FbxManager.Create ();
  20. FbxIOSettings ioSettings = FbxIOSettings.Create (manager, "");
  21. // GetSelected is a virtual method inherited from FbxObject
  22. Assert.IsFalse (ioSettings.GetSelected ());
  23. ioSettings.SetSelected (true);
  24. Assert.IsTrue (ioSettings.GetSelected ());
  25. ioSettings.Destroy ();
  26. manager.Destroy ();
  27. }
  28. [Test]
  29. public void TestIdentity ()
  30. {
  31. using (FbxIOSettings ioSettings1 = FbxIOSettings.Create (Manager, "")) {
  32. Manager.SetIOSettings (ioSettings1);
  33. FbxIOSettings ioSettings2 = Manager.GetIOSettings ();
  34. Assert.AreEqual (ioSettings1, ioSettings2);
  35. }
  36. }
  37. [Test]
  38. public void TestSetBoolProp()
  39. {
  40. // just make sure it doesn't crash
  41. using (FbxIOSettings ioSettings = FbxIOSettings.Create (Manager, "")) {
  42. ioSettings.SetBoolProp (Globals.EXP_FBX_EMBEDDED, true);
  43. ioSettings.SetBoolProp ("", true);
  44. Assert.That (() => { ioSettings.SetBoolProp (null, true); }, Throws.Exception.TypeOf<System.ArgumentNullException>());
  45. }
  46. }
  47. }
  48. }