FbxAnimStackTest.cs 1.4 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 System.Collections;
  9. using Autodesk.Fbx;
  10. namespace Autodesk.Fbx.UnitTests
  11. {
  12. public class FbxAnimStackTest : Base<FbxAnimStack>
  13. {
  14. [Test]
  15. public void TestBasics(){
  16. using (var animStack = CreateObject ("anim stack")) {
  17. FbxCollectionTest.GenericTests (animStack, Manager);
  18. // test description
  19. animStack.Description.Set ("this is an anim stack");
  20. Assert.AreEqual ("this is an anim stack", animStack.Description.Get ());
  21. // test SetLocalTimeSpan (make sure it doesn't crash)
  22. animStack.SetLocalTimeSpan(new FbxTimeSpan());
  23. // test GetLocalTimeSpan
  24. FbxTimeSpan timeSpan = animStack.GetLocalTimeSpan();
  25. Assert.IsInstanceOf<FbxTimeSpan> (timeSpan);
  26. // test SetLocalTimeSpan with null
  27. Assert.That (() => { animStack.SetLocalTimeSpan(null); }, Throws.Exception.TypeOf<System.ArgumentNullException>());
  28. }
  29. }
  30. }
  31. }