FbxDouble2Test.cs 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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 FbxDouble2Test
  17. {
  18. #if ENABLE_COVERAGE_TEST
  19. [Test]
  20. public void TestCoverage() { CoverageTester.TestCoverage(typeof(FbxDouble2), this.GetType()); }
  21. #endif
  22. [Test]
  23. public void TestEquality()
  24. {
  25. EqualityTester<FbxDouble2>.TestEquality(
  26. new FbxDouble2(0, 1),
  27. new FbxDouble2(1, 0),
  28. new FbxDouble2(0, 1));
  29. }
  30. /// <summary>
  31. /// Test the basics.
  32. /// </summary>
  33. [Test]
  34. public void TestBasics()
  35. {
  36. FbxDouble2 v;
  37. // make sure the no-arg constructor doesn't crash
  38. new FbxDouble2();
  39. // Test other constructors
  40. v = new FbxDouble2(1, 2);
  41. var u = new FbxDouble2(v);
  42. Assert.AreEqual(v, u);
  43. u[0] = 5;
  44. Assert.AreEqual(5, u[0]);
  45. Assert.AreEqual(1, v[0]); // check that setting u doesn't set v
  46. var w = new FbxDouble2(3);
  47. Assert.AreEqual(3, w[0]);
  48. Assert.AreEqual(3, w[1]);
  49. // Test operator[]
  50. v = new FbxDouble2();
  51. v[0] = 1;
  52. Assert.AreEqual(1, v[0]);
  53. v[1] = 2;
  54. Assert.AreEqual(2, v[1]);
  55. Assert.That(() => v[-1], Throws.Exception.TypeOf<System.ArgumentOutOfRangeException>());
  56. Assert.That(() => v[ 2], Throws.Exception.TypeOf<System.ArgumentOutOfRangeException>());
  57. Assert.That(() => v[-1] = 5, Throws.Exception.TypeOf<System.ArgumentOutOfRangeException>());
  58. Assert.That(() => v[ 2] = 5, Throws.Exception.TypeOf<System.ArgumentOutOfRangeException>());
  59. // Test 2-argument constructor and members X/Y
  60. v = new FbxDouble2(1, 2);
  61. Assert.AreEqual(1, v.X);
  62. Assert.AreEqual(2, v.Y);
  63. v.X = 3;
  64. v.Y = 4;
  65. Assert.AreEqual(3, v.X);
  66. Assert.AreEqual(4, v.Y);
  67. }
  68. }
  69. }