Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/util/TestUtils.java')
-rw-r--r--plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/util/TestUtils.java46
1 files changed, 46 insertions, 0 deletions
diff --git a/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/util/TestUtils.java b/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/util/TestUtils.java
new file mode 100644
index 0000000000..b6b0ab7998
--- /dev/null
+++ b/plugins/org.eclipse.net4j.tests/src/org/eclipse/net4j/tests/util/TestUtils.java
@@ -0,0 +1,46 @@
+/*******************************************************************************
+ * Copyright (c) 2004, 2005, 2006 Eike Stepper, Sympedia Methods and Tools.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Eike Stepper - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.net4j.test.util;
+
+
+import junit.framework.Assert;
+
+
+public class TestUtils
+{
+ public static void assertContains(String message, String text, String word)
+ {
+ if (text == null)
+ {
+ Assert.assertNull(message, word);
+ }
+
+ Assert.assertTrue(message, text.matches(".*" + word + ".*"));
+ }
+
+ public static void assertContains(String text, String word)
+ {
+ String message = "'" + text + "' should contain '" + word + "'";
+ assertContains(message, text, word);
+ }
+
+ public static void assertContains(String message, Throwable t, String word)
+ {
+ String text = t.getMessage();
+ assertContains(message, text, word);
+ }
+
+ public static void assertContains(Throwable t, String word)
+ {
+ String text = t.getMessage();
+ assertContains(text, word);
+ }
+} \ No newline at end of file

Back to the top