Move enterprise tests
[lgpl/argeo-commons.git] / org.argeo.enterprise / ext / test / org / argeo / util / ThroughputTest.java
diff --git a/org.argeo.enterprise/ext/test/org/argeo/util/ThroughputTest.java b/org.argeo.enterprise/ext/test/org/argeo/util/ThroughputTest.java
deleted file mode 100644 (file)
index d62f55c..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-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();
-       }
-}