< Summary

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

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
GenerateObject(...)0%2100%
GenerateCluster(...)0%2100%
TestSize()0%6200%
TestIsEmpty()0%2100%
TestRadius()0%2100%
TestCentroid()0%12300%
TestRecenter()0%12300%
TestMerge()0%6200%

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 {
 08  public static GameObject GenerateObject(in Vector3 position) {
 09    GameObject obj = new GameObject();
 010    obj.transform.position = position;
 011    return obj;
 012  }
 13
 014  public static Cluster GenerateCluster(in IReadOnlyList<GameObject> objects) {
 015    Cluster cluster = new Cluster();
 016    cluster.AddObjects(objects);
 017    cluster.Recenter();
 018    return cluster;
 019  }
 20
 21  [Test]
 022  public void TestSize() {
 23    const int size = 10;
 024    List<GameObject> objects = new List<GameObject>();
 025    for (int i = 0; i < size; ++i) {
 026      objects.Add(GenerateObject(new Vector3(0, i, 0)));
 027    }
 028    Cluster cluster = GenerateCluster(objects);
 029    Assert.AreEqual(size, cluster.Size());
 030  }
 31
 32  [Test]
 033  public void TestIsEmpty() {
 034    Cluster emptyCluster = new Cluster();
 035    Assert.IsTrue(emptyCluster.IsEmpty());
 36
 037    Cluster cluster = new Cluster();
 038    cluster.AddObject(new GameObject());
 039    Assert.IsFalse(cluster.IsEmpty());
 040  }
 41
 42  [Test]
 043  public void TestRadius() {
 44    const float radius = 5;
 045    List<GameObject> objects = new List<GameObject>();
 046    objects.Add(GenerateObject(new Vector3(0, radius, 0)));
 047    objects.Add(GenerateObject(new Vector3(0, -radius, 0)));
 048    Cluster cluster = GenerateCluster(objects);
 049    Assert.AreEqual(radius, cluster.Radius());
 050  }
 51
 52  [Test]
 053  public void TestCentroid() {
 054    List<GameObject> objects = new List<GameObject>();
 055    for (int i = -1; i <= 1; ++i) {
 056      for (int j = -1; j <= 1; ++j) {
 057        objects.Add(GenerateObject(new Vector3(i, j, 0)));
 058      }
 059    }
 060    Cluster cluster = GenerateCluster(objects);
 061    Assert.AreEqual(Vector3.zero, cluster.Centroid());
 062  }
 63
 64  [Test]
 065  public void TestRecenter() {
 066    List<GameObject> objects = new List<GameObject>();
 067    for (int i = -1; i <= 1; ++i) {
 068      for (int j = -1; j <= 1; ++j) {
 069        objects.Add(GenerateObject(new Vector3(i, j, 0)));
 070      }
 071    }
 072    Cluster cluster = GenerateCluster(objects);
 073    cluster.AddObject(GenerateObject(new Vector3(10, -10, 0)));
 074    Assert.AreNotEqual(new Vector3(1, -1, 0), cluster.Coordinates);
 075    cluster.Recenter();
 076    Assert.AreEqual(new Vector3(1, -1, 0), cluster.Coordinates);
 077  }
 78
 79  [Test]
 080  public void TestMerge() {
 81    const int size = 10;
 082    List<GameObject> objects1 = new List<GameObject>();
 083    List<GameObject> objects2 = new List<GameObject>();
 084    for (int i = 0; i < size; ++i) {
 085      objects1.Add(GenerateObject(new Vector3(0, i, 0)));
 086      objects2.Add(GenerateObject(new Vector3(i, 0, 0)));
 087    }
 088    Cluster cluster1 = GenerateCluster(objects1);
 089    Cluster cluster2 = GenerateCluster(objects2);
 090    int size1 = cluster1.Size();
 091    int size2 = cluster2.Size();
 092    Vector3 centroid1 = cluster1.Centroid();
 093    Vector3 centroid2 = cluster2.Centroid();
 094    cluster1.Merge(cluster2);
 095    cluster1.Recenter();
 096    Assert.AreEqual(size1 + size2, cluster1.Size());
 097    Assert.AreEqual((centroid1 + centroid2) / 2, cluster1.Coordinates);
 098  }
 99}