FbxNullTest.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132
  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 FbxNullTest : FbxNodeAttributeBase<FbxNull>
  13. {
  14. [Test]
  15. public void TestBasics() {
  16. var thenull = CreateObject();
  17. base.TestBasics(thenull, FbxNodeAttribute.EType.eNull);
  18. Assert.AreEqual(100.0, thenull.GetSizeDefaultValue());
  19. TestGetter(FbxNull.sSize);
  20. TestGetter(FbxNull.sLook);
  21. Assert.AreEqual(thenull.Size, thenull.FindProperty(FbxNull.sSize));
  22. Assert.AreEqual(thenull.Look, thenull.FindProperty(FbxNull.sLook));
  23. thenull.Size.Set(7);
  24. thenull.Reset();
  25. Assert.AreEqual(FbxNull.sDefaultSize, thenull.Size.Get());
  26. Assert.AreEqual(FbxNull.sDefaultLook, thenull.Look.Get());
  27. }
  28. }
  29. }