FbxDouble3Test.cs 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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 Autodesk.Fbx;
  9. namespace Autodesk.Fbx.UnitTests
  10. {
  11. /// <summary>
  12. /// Run some tests that any vector type should be able to pass.
  13. /// If you add tests here, you probably want to add them to the other
  14. /// FbxDouble* test classes.
  15. /// </summary>
  16. public class FbxDouble3Test
  17. {
  18. #if ENABLE_COVERAGE_TEST
  19. [Test]
  20. public void TestCoverage() { CoverageTester.TestCoverage(typeof(FbxDouble3), this.GetType()); }
  21. #endif
  22. [Test]
  23. public void TestEquality()
  24. {
  25. EqualityTester<FbxDouble3>.TestEquality(
  26. new FbxDouble3(0, 1, 2),
  27. new FbxDouble3(2, 1, 0),
  28. new FbxDouble3(0, 1, 2));
  29. }
  30. /// <summary>
  31. /// Test the basics. Subclasses should override and add some calls
  32. /// e.g. to excercise all the constructors.
  33. /// </summary>
  34. [Test]
  35. public void TestBasics()
  36. {
  37. FbxDouble3 v;
  38. // make sure the no-arg constructor doesn't crash
  39. new FbxDouble3();
  40. // Test other constructors
  41. v = new FbxDouble3(1, 2, 3);
  42. var u = new FbxDouble3(v);
  43. Assert.AreEqual(v, u);
  44. u[0] = 5;
  45. Assert.AreEqual(5, u[0]);
  46. Assert.AreEqual(1, v[0]); // check that setting u doesn't set v
  47. var w = new FbxDouble3(3);
  48. Assert.AreEqual(3, w[0]);
  49. Assert.AreEqual(3, w[1]);
  50. Assert.AreEqual(3, w[2]);
  51. // Test operator[]
  52. v = new FbxDouble3();
  53. v[0] = 1;
  54. Assert.AreEqual(1, v[0]);
  55. v[1] = 2;
  56. Assert.AreEqual(2, v[1]);
  57. v[2] = 3;
  58. Assert.AreEqual(3, v[2]);
  59. Assert.That(() => v[-1], Throws.Exception.TypeOf<System.ArgumentOutOfRangeException>());
  60. Assert.That(() => v[ 3], Throws.Exception.TypeOf<System.ArgumentOutOfRangeException>());
  61. Assert.That(() => v[-1] = 5, Throws.Exception.TypeOf<System.ArgumentOutOfRangeException>());
  62. Assert.That(() => v[ 3] = 5, Throws.Exception.TypeOf<System.ArgumentOutOfRangeException>());
  63. // Test 3-argument constructor and members X/Y/Z
  64. v = new FbxDouble3(1, 2, 3);
  65. Assert.AreEqual(1, v.X);
  66. Assert.AreEqual(2, v.Y);
  67. Assert.AreEqual(3, v.Z);
  68. v.X = 3;
  69. v.Y = 4;
  70. v.Z = 5;
  71. Assert.AreEqual(3, v.X);
  72. Assert.AreEqual(4, v.Y);
  73. Assert.AreEqual(5, v.Z);
  74. }
  75. }
  76. }