FbxSkinTest.cs 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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 FbxSkinTest : FbxDeformerTestBase<FbxSkin>
  13. {
  14. [Test]
  15. public void TestDeformerBasics()
  16. {
  17. // test FbxDeformer functions
  18. TestBasics(CreateObject(), FbxDeformer.EDeformerType.eSkin);
  19. }
  20. [Test]
  21. public void TestAddCluster ()
  22. {
  23. var fbxSkin = CreateObject ("skin");
  24. var fbxCluster = FbxCluster.Create (Manager, "cluster");
  25. bool result = fbxSkin.AddCluster (fbxCluster);
  26. Assert.IsTrue (result);
  27. Assert.AreEqual (fbxSkin.GetCluster (0), fbxCluster);
  28. // test adding null cluster
  29. Assert.That (() => { fbxSkin.AddCluster(null); }, Throws.Exception.TypeOf<System.ArgumentNullException>());
  30. // add invalid cluster
  31. var fbxCluster2 = FbxCluster.Create(Manager, "cluster2");
  32. fbxCluster2.Dispose();
  33. Assert.That (() => { fbxSkin.AddCluster(fbxCluster2); }, Throws.Exception.TypeOf<System.ArgumentNullException>());
  34. }
  35. }
  36. }