aboutsummaryrefslogtreecommitdiff
path: root/guava-gwt/test/com/google/common/base/StopwatchTest_gwt.java
diff options
context:
space:
mode:
Diffstat (limited to 'guava-gwt/test/com/google/common/base/StopwatchTest_gwt.java')
-rw-r--r--guava-gwt/test/com/google/common/base/StopwatchTest_gwt.java25
1 files changed, 20 insertions, 5 deletions
diff --git a/guava-gwt/test/com/google/common/base/StopwatchTest_gwt.java b/guava-gwt/test/com/google/common/base/StopwatchTest_gwt.java
index f2284ce4b..8372cbfec 100644
--- a/guava-gwt/test/com/google/common/base/StopwatchTest_gwt.java
+++ b/guava-gwt/test/com/google/common/base/StopwatchTest_gwt.java
@@ -28,6 +28,26 @@ public void testCreateUnstarted() throws Exception {
testCase.testCreateUnstarted();
}
+public void testElapsedMillis() throws Exception {
+ com.google.common.base.StopwatchTest testCase = new com.google.common.base.StopwatchTest();
+ testCase.testElapsedMillis();
+}
+
+public void testElapsedMillis_multipleSegments() throws Exception {
+ com.google.common.base.StopwatchTest testCase = new com.google.common.base.StopwatchTest();
+ testCase.testElapsedMillis_multipleSegments();
+}
+
+public void testElapsedMillis_notRunning() throws Exception {
+ com.google.common.base.StopwatchTest testCase = new com.google.common.base.StopwatchTest();
+ testCase.testElapsedMillis_notRunning();
+}
+
+public void testElapsedMillis_whileRunning() throws Exception {
+ com.google.common.base.StopwatchTest testCase = new com.google.common.base.StopwatchTest();
+ testCase.testElapsedMillis_whileRunning();
+}
+
public void testElapsed_micros() throws Exception {
com.google.common.base.StopwatchTest testCase = new com.google.common.base.StopwatchTest();
testCase.testElapsed_micros();
@@ -92,9 +112,4 @@ public void testStop_new() throws Exception {
com.google.common.base.StopwatchTest testCase = new com.google.common.base.StopwatchTest();
testCase.testStop_new();
}
-
-public void testToString() throws Exception {
- com.google.common.base.StopwatchTest testCase = new com.google.common.base.StopwatchTest();
- testCase.testToString();
-}
}