FbxNodeAttributeTest.cs 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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 FbxNodeAttributeBase<T> : Base<T> where T : FbxNodeAttribute
  13. {
  14. virtual public void TestBasics(T attr, FbxNodeAttribute.EType typ)
  15. {
  16. Assert.AreEqual(typ, attr.GetAttributeType());
  17. Assert.AreEqual(attr.Color, attr.FindProperty(FbxNodeAttribute.sColor));
  18. TestGetter(FbxNodeAttribute.sDefaultColor);
  19. Assert.AreEqual(0, attr.GetNodeCount());
  20. var node1 = FbxNode.Create(Manager, "node1");
  21. var node2 = FbxNode.Create(Manager, "node2");
  22. node1.SetNodeAttribute(attr);
  23. node2.SetNodeAttribute(attr);
  24. Assert.AreEqual(2, attr.GetNodeCount());
  25. Assert.AreEqual(node1, attr.GetNode());
  26. Assert.AreEqual(node2, attr.GetNode(1));
  27. }
  28. }
  29. public class FbxNodeAttributeTest : FbxNodeAttributeBase<FbxNodeAttribute>
  30. {
  31. [Test]
  32. public void TestBasics() {
  33. TestBasics(CreateObject(), FbxNodeAttribute.EType.eUnknown);
  34. }
  35. }
  36. }