< Summary

Class:Coordinates2Test
Assembly:bamlab.test.editmode
File(s):/github/workspace/Assets/Tests/EditMode/CoordinatesTest.cs
Covered lines:55
Uncovered lines:0
Coverable lines:55
Total lines:121
Line coverage:100% (55 of 55)
Covered branches:0
Total branches:0
Covered methods:8
Total methods:8
Method coverage:100% (8 of 8)

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
TestCartesianToPolarOrigin()0%110100%
TestCartesianToPolarXAxis()0%110100%
TestCartesianToPolarYAxis()0%110100%
TestPolarToCartesianOrigin()0%220100%
TestPolarToCartesianXAxis()0%110100%
TestPolarToCartesianYAxis()0%110100%
TestPolarToCartesian30()0%110100%
TestPolarToCartesian45()0%110100%

File(s)

/github/workspace/Assets/Tests/EditMode/CoordinatesTest.cs

#LineLine coverage
 1using NUnit.Framework;
 2using UnityEngine;
 3using UnityEngine.TestTools;
 4
 5public class Coordinates2Test {
 6  private const float Epsilon = 0.0001f;
 7
 8  [Test]
 19  public void TestCartesianToPolarOrigin() {
 110    Vector2 cartesian = Vector2.zero;
 111    Assert.That(Coordinates2.ConvertCartesianToPolar(cartesian).x, Is.EqualTo(0).Within(Epsilon));
 112  }
 13
 14  [Test]
 115  public void TestCartesianToPolarXAxis() {
 116    Vector2 cartesian = new Vector2(5, 0);
 117    Vector2 expectedPolar = new Vector2(5.0f, 0.0f);
 118    Vector2 actualPolar = Coordinates2.ConvertCartesianToPolar(cartesian);
 119    Assert.That(actualPolar.x, Is.EqualTo(expectedPolar.x).Within(Epsilon));
 120    Assert.That(actualPolar.y, Is.EqualTo(expectedPolar.y).Within(Epsilon));
 121  }
 22
 23  [Test]
 124  public void TestCartesianToPolarYAxis() {
 125    Vector2 cartesian = new Vector2(0, 5);
 126    Vector2 expectedPolar = new Vector2(5.0f, 90.0f);
 127    Vector2 actualPolar = Coordinates2.ConvertCartesianToPolar(cartesian);
 128    Assert.That(actualPolar.x, Is.EqualTo(expectedPolar.x).Within(Epsilon));
 129    Assert.That(actualPolar.y, Is.EqualTo(expectedPolar.y).Within(Epsilon));
 130  }
 31
 32  [Test]
 133  public void TestPolarToCartesianOrigin() {
 134    Vector2 expectedCartesian = Vector2.zero;
 135    Vector2[] polarInputs = new[] { new Vector2(0, 0), new Vector2(0, 45), new Vector2(0, 90),
 36                                    new Vector2(0, 180), new Vector2(0, 360) };
 37
 1838    foreach (var polar in polarInputs) {
 539      Vector2 actualCartesian = Coordinates2.ConvertPolarToCartesian(polar);
 540      Assert.That(actualCartesian.x, Is.EqualTo(expectedCartesian.x).Within(Epsilon));
 541      Assert.That(actualCartesian.y, Is.EqualTo(expectedCartesian.y).Within(Epsilon));
 542    }
 143  }
 44
 45  [Test]
 146  public void TestPolarToCartesianXAxis() {
 147    Vector2 polar = new Vector2(10, 0);
 148    Vector2 expectedCartesian = new Vector2(10.0f, 0.0f);
 149    Vector2 actualCartesian = Coordinates2.ConvertPolarToCartesian(polar);
 150    Assert.That(actualCartesian.x, Is.EqualTo(expectedCartesian.x).Within(Epsilon));
 151    Assert.That(actualCartesian.y, Is.EqualTo(expectedCartesian.y).Within(Epsilon));
 152  }
 53
 54  [Test]
 155  public void TestPolarToCartesianYAxis() {
 156    Vector2 polar = new Vector2(10, 90);
 157    Vector2 expectedCartesian = new Vector2(0.0f, 10.0f);
 158    Vector2 actualCartesian = Coordinates2.ConvertPolarToCartesian(polar);
 159    Assert.That(actualCartesian.x, Is.EqualTo(expectedCartesian.x).Within(Epsilon));
 160    Assert.That(actualCartesian.y, Is.EqualTo(expectedCartesian.y).Within(Epsilon));
 161  }
 62
 63  [Test]
 164  public void TestPolarToCartesian30() {
 165    Vector2 polar = new Vector2(20, 30);
 166    Vector2 expectedCartesian = new Vector2(10 * Mathf.Sqrt(3), 10);
 167    Vector2 actualCartesian = Coordinates2.ConvertPolarToCartesian(polar);
 168    Assert.That(actualCartesian.x, Is.EqualTo(expectedCartesian.x).Within(Epsilon));
 169    Assert.That(actualCartesian.y, Is.EqualTo(expectedCartesian.y).Within(Epsilon));
 170  }
 71
 72  [Test]
 173  public void TestPolarToCartesian45() {
 174    Vector2 polar = new Vector2(10 * Mathf.Sqrt(2), 45);
 175    Vector2 expectedCartesian = new Vector2(10.0f, 10.0f);
 176    Vector2 actualCartesian = Coordinates2.ConvertPolarToCartesian(polar);
 177    Assert.That(actualCartesian.x, Is.EqualTo(expectedCartesian.x).Within(Epsilon));
 178    Assert.That(actualCartesian.y, Is.EqualTo(expectedCartesian.y).Within(Epsilon));
 179  }
 80}
 81
 82public class Coordinates3Test {
 83  private const float Epsilon = 0.0001f;
 84
 85  [Test]
 86  public void TestCartesianToSphericalOrigin() {
 87    Vector3 cartesian = Vector3.zero;
 88    Assert.That(Coordinates3.ConvertCartesianToSpherical(cartesian).x,
 89                Is.EqualTo(0).Within(Epsilon));
 90  }
 91
 92  [Test]
 93  public void TestCartesianToSpherical() {
 94    Vector3 cartesian = new Vector3(2, -1, 3);
 95    Vector3 expectedSpherical = new Vector3(Mathf.Sqrt(14), 33.690068f, -15.501360f);
 96    Vector3 actualSpherical = Coordinates3.ConvertCartesianToSpherical(cartesian);
 97    Assert.That(actualSpherical.x, Is.EqualTo(expectedSpherical.x).Within(Epsilon));
 98    Assert.That(actualSpherical.y, Is.EqualTo(expectedSpherical.y).Within(Epsilon));
 99    Assert.That(actualSpherical.z, Is.EqualTo(expectedSpherical.z).Within(Epsilon));
 100  }
 101
 102  [Test]
 103  public void TestSphericalToCartesianOrigin() {
 104    Vector3 spherical = new Vector3(0, 45, 90);
 105    Vector3 expectedCartesian = Vector3.zero;
 106    Vector3 actualCartesian = Coordinates3.ConvertSphericalToCartesian(spherical);
 107    Assert.That(actualCartesian.x, Is.EqualTo(expectedCartesian.x).Within(Epsilon));
 108    Assert.That(actualCartesian.y, Is.EqualTo(expectedCartesian.y).Within(Epsilon));
 109    Assert.That(actualCartesian.z, Is.EqualTo(expectedCartesian.z).Within(Epsilon));
 110  }
 111
 112  [Test]
 113  public void TestSphericalToCartesian() {
 114    Vector3 spherical = new Vector3(10, 60, 30);
 115    Vector3 expectedCartesian = new Vector3(7.5f, 5.0f, 4.3301270189221945f);
 116    Vector3 actualCartesian = Coordinates3.ConvertSphericalToCartesian(spherical);
 117    Assert.That(actualCartesian.x, Is.EqualTo(expectedCartesian.x).Within(Epsilon));
 118    Assert.That(actualCartesian.y, Is.EqualTo(expectedCartesian.y).Within(Epsilon));
 119    Assert.That(actualCartesian.z, Is.EqualTo(expectedCartesian.z).Within(Epsilon));
 120  }
 121}