FbxLayerContainerTest.cs 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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 FbxLayerContainerBase<T> : FbxNodeAttributeBase<T> where T:FbxLayerContainer
  13. {
  14. override public void TestBasics(T layerContainer, FbxNodeAttribute.EType typ)
  15. {
  16. base.TestBasics(layerContainer, typ);
  17. int index = layerContainer.CreateLayer ();
  18. Assert.GreaterOrEqual (index, 0); // check an index is returned (-1 is error)
  19. // make sure doesn't crash and returns expected value
  20. Assert.IsNotNull (layerContainer.GetLayer (index));
  21. Assert.IsNull (layerContainer.GetLayer (int.MinValue));
  22. Assert.IsNull (layerContainer.GetLayer (int.MaxValue));
  23. Assert.AreEqual (layerContainer.GetLayerCount (), 1);
  24. Assert.AreEqual (layerContainer.GetLayerCount (FbxLayerElement.EType.eUnknown), 0);
  25. Assert.AreEqual (layerContainer.GetLayerCount (FbxLayerElement.EType.eUnknown, true), 0);
  26. }
  27. }
  28. public class FbxLayerContainerTest : FbxLayerContainerBase<FbxLayerContainer>
  29. {
  30. [Test]
  31. public void TestBasics() {
  32. base.TestBasics(CreateObject(), FbxNodeAttribute.EType.eUnknown);
  33. }
  34. }
  35. }