< Summary

Class:ClusterTest
Assembly:bamlab.test.editmode
File(s):/github/workspace/Assets/Tests/EditMode/ClusterTest.cs
Covered lines:74
Uncovered lines:0
Coverable lines:74
Total lines:99
Line coverage:100% (74 of 74)
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
GenerateObject(...)0%110100%
GenerateCluster(...)0%110100%
TestSize()0%220100%
TestIsEmpty()0%110100%
TestRadius()0%110100%
TestCentroid()0%330100%
TestRecenter()0%330100%
TestMerge()0%220100%

File(s)

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

#LineLine coverage
 1using NUnit.Framework;
 2using System.Collections;
 3using System.Collections.Generic;
 4using UnityEngine;
 5using UnityEngine.TestTools;
 6
 7public class ClusterTest {
 518  public static GameObject GenerateObject(in Vector3 position) {
 519    GameObject obj = new GameObject();
 5110    obj.transform.position = position;
 5111    return obj;
 5112  }
 13
 614  public static Cluster GenerateCluster(in IReadOnlyList<GameObject> objects) {
 615    Cluster cluster = new Cluster();
 616    cluster.AddObjects(objects);
 617    cluster.Recenter();
 618    return cluster;
 619  }
 20
 21  [Test]
 122  public void TestSize() {
 23    const int size = 10;
 124    List<GameObject> objects = new List<GameObject>();
 3225    for (int i = 0; i < size; ++i) {
 1026      objects.Add(GenerateObject(new Vector3(0, i, 0)));
 1027    }
 128    Cluster cluster = GenerateCluster(objects);
 129    Assert.AreEqual(size, cluster.Size());
 130  }
 31
 32  [Test]
 133  public void TestIsEmpty() {
 134    Cluster emptyCluster = new Cluster();
 135    Assert.IsTrue(emptyCluster.IsEmpty());
 36
 137    Cluster cluster = new Cluster();
 138    cluster.AddObject(new GameObject());
 139    Assert.IsFalse(cluster.IsEmpty());
 140  }
 41
 42  [Test]
 143  public void TestRadius() {
 44    const float radius = 5;
 145    List<GameObject> objects = new List<GameObject>();
 146    objects.Add(GenerateObject(new Vector3(0, radius, 0)));
 147    objects.Add(GenerateObject(new Vector3(0, -radius, 0)));
 148    Cluster cluster = GenerateCluster(objects);
 149    Assert.AreEqual(radius, cluster.Radius());
 150  }
 51
 52  [Test]
 153  public void TestCentroid() {
 154    List<GameObject> objects = new List<GameObject>();
 1155    for (int i = -1; i <= 1; ++i) {
 3356      for (int j = -1; j <= 1; ++j) {
 957        objects.Add(GenerateObject(new Vector3(i, j, 0)));
 958      }
 359    }
 160    Cluster cluster = GenerateCluster(objects);
 161    Assert.AreEqual(Vector3.zero, cluster.Centroid());
 162  }
 63
 64  [Test]
 165  public void TestRecenter() {
 166    List<GameObject> objects = new List<GameObject>();
 1167    for (int i = -1; i <= 1; ++i) {
 3368      for (int j = -1; j <= 1; ++j) {
 969        objects.Add(GenerateObject(new Vector3(i, j, 0)));
 970      }
 371    }
 172    Cluster cluster = GenerateCluster(objects);
 173    cluster.AddObject(GenerateObject(new Vector3(10, -10, 0)));
 174    Assert.AreNotEqual(new Vector3(1, -1, 0), cluster.Coordinates);
 175    cluster.Recenter();
 176    Assert.AreEqual(new Vector3(1, -1, 0), cluster.Coordinates);
 177  }
 78
 79  [Test]
 180  public void TestMerge() {
 81    const int size = 10;
 182    List<GameObject> objects1 = new List<GameObject>();
 183    List<GameObject> objects2 = new List<GameObject>();
 3284    for (int i = 0; i < size; ++i) {
 1085      objects1.Add(GenerateObject(new Vector3(0, i, 0)));
 1086      objects2.Add(GenerateObject(new Vector3(i, 0, 0)));
 1087    }
 188    Cluster cluster1 = GenerateCluster(objects1);
 189    Cluster cluster2 = GenerateCluster(objects2);
 190    int size1 = cluster1.Size();
 191    int size2 = cluster2.Size();
 192    Vector3 centroid1 = cluster1.Centroid();
 193    Vector3 centroid2 = cluster2.Centroid();
 194    cluster1.Merge(cluster2);
 195    cluster1.Recenter();
 196    Assert.AreEqual(size1 + size2, cluster1.Size());
 197    Assert.AreEqual((centroid1 + centroid2) / 2, cluster1.Coordinates);
 198  }
 99}