Merge Argeo Util and parts of Argeo JCR in Argeo Core.
[lgpl/argeo-commons.git] / org.argeo.core / ext / test / org / argeo / util / ThroughputTest.java
diff --git a/org.argeo.core/ext/test/org/argeo/util/ThroughputTest.java b/org.argeo.core/ext/test/org/argeo/util/ThroughputTest.java
new file mode 100644 (file)
index 0000000..d62f55c
--- /dev/null
@@ -0,0 +1,17 @@
+package org.argeo.util;
+
+public class ThroughputTest {
+       public void testParse() throws Exception {
+//             assert 0 == 1;
+
+               Throughput t;
+               t = new Throughput("3.54/s");
+               assert 3.54d == t.getValue();
+               assert Throughput.Unit.s.equals(t.getUnit());
+               assert 282l == (long) t.asMsPeriod();
+
+               t = new Throughput("35698.2569/h");
+               assert Throughput.Unit.h.equals(t.getUnit());
+               assert 101l == (long) t.asMsPeriod();
+       }
+}