aboutsummaryrefslogtreecommitdiff
path: root/android/WALT/app/src/test/java/org/chromium/latency/walt/UtilsTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'android/WALT/app/src/test/java/org/chromium/latency/walt/UtilsTest.java')
-rw-r--r--android/WALT/app/src/test/java/org/chromium/latency/walt/UtilsTest.java34
1 files changed, 32 insertions, 2 deletions
diff --git a/android/WALT/app/src/test/java/org/chromium/latency/walt/UtilsTest.java b/android/WALT/app/src/test/java/org/chromium/latency/walt/UtilsTest.java
index bf77e05..33d8454 100644
--- a/android/WALT/app/src/test/java/org/chromium/latency/walt/UtilsTest.java
+++ b/android/WALT/app/src/test/java/org/chromium/latency/walt/UtilsTest.java
@@ -16,15 +16,18 @@
package org.chromium.latency.walt;
+import com.github.mikephil.charting.data.Entry;
+
import org.junit.Test;
import java.util.ArrayList;
+import java.util.List;
import java.util.Random;
import static java.lang.Double.NaN;
-import static junit.framework.Assert.assertEquals;
+import static org.junit.Assert.assertEquals;
import static org.hamcrest.core.Is.is;
-import static org.junit.Assert.assertThat;
+import static org.hamcrest.MatcherAssert.assertThat;
public class UtilsTest {
@@ -159,4 +162,31 @@ public class UtilsTest {
}
assertEquals(latency, Utils.findBestShift(laserTimes, touchTimes, touchY), 1e-6);
}
+
+ @Test
+ public void testMeanEntries() {
+ List<Entry> entries = new ArrayList<>();
+ for (int i = 1; i <= 10; i++) {
+ entries.add(new Entry(i, i));
+ }
+ assertEquals(5.5, Utils.mean(entries), 1e-12);
+ }
+
+ @Test
+ public void testMinEntries() {
+ List<Entry> entries = new ArrayList<>();
+ for (int i = 1; i <= 10; i++) {
+ entries.add(new Entry(i, i));
+ }
+ assertEquals(1, Utils.min(entries), 1e-12);
+ }
+
+ @Test
+ public void testMaxEntries() {
+ List<Entry> entries = new ArrayList<>();
+ for (int i = 1; i <= 10; i++) {
+ entries.add(new Entry(i, i));
+ }
+ assertEquals(10, Utils.max(entries), 1e-12);
+ }
}