FbxImplementationTest.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  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. using System.Collections.Generic;
  10. namespace Autodesk.Fbx.UnitTests
  11. {
  12. public class FbxImplementationTest : Base<FbxImplementation>
  13. {
  14. [Test]
  15. public void TestBasics() {
  16. var impl = FbxImplementation.Create(Manager, "impl");
  17. // Call the getters, make sure they get.
  18. GetSetProperty(impl.Language, "klingon");
  19. GetSetProperty(impl.LanguageVersion, "0.1");
  20. GetSetProperty(impl.RenderAPI, "bogosity");
  21. GetSetProperty(impl.RenderAPIVersion, "0.1");
  22. GetSetProperty(impl.RootBindingName, "root");
  23. impl.RootBindingName.Set("root");
  24. var table = impl.AddNewTable("root", "shader");
  25. Assert.AreEqual(table, impl.GetRootTable());
  26. }
  27. void GetSetProperty(FbxPropertyString prop, string value) {
  28. prop.Set(value);
  29. Assert.AreEqual(value, prop.Get());
  30. }
  31. }
  32. }