Improve test coverage for TmfEventField.
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core.tests / src / org / eclipse / linuxtools / tmf / core / tests / event / TmfSimpleTimestampTest.java
index c2caed2f91638899dfedab998d48388e92129073..937caffeb9615f9cfa72a71493e288532869dd7f 100644 (file)
@@ -90,21 +90,21 @@ public class TmfSimpleTimestampTest extends TestCase {
         try {
             @SuppressWarnings("unused")
             ITmfTimestamp timestamp = new TmfSimpleTimestamp(null);
-            fail("null copy");
+            fail("TmfSimpleTimestamp: null argument");
         } catch (IllegalArgumentException e) {
         }
 
         try {
             @SuppressWarnings("unused")
             ITmfTimestamp ts = new TmfSimpleTimestamp(ts0a);
-            fail("bad scale");
+            fail("TmfSimpleTimestamp: bad scale");
         } catch (IllegalArgumentException e) {
         }
 
         try {
             @SuppressWarnings("unused")
             ITmfTimestamp ts = new TmfSimpleTimestamp(ts0b);
-            fail("bad precision");
+            fail("TmfSimpleTimestamp: bad precision");
         } catch (IllegalArgumentException e) {
         }
     }
This page took 0.023765 seconds and 5 git commands to generate.