Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc Khouzam2014-07-30 11:48:55 +0000
committerMarc Khouzam2014-07-30 11:48:55 +0000
commitf25a9ffe98abbbd8e1b90357c6fd169541e4f03b (patch)
tree421bca7c40db938e5815d1004cf81b83bc21d608
parent6eccf283e4a9fa3f56fb421de32f3e104eda257f (diff)
downloadorg.eclipse.cdt-f25a9ffe98abbbd8e1b90357c6fd169541e4f03b.tar.gz
org.eclipse.cdt-f25a9ffe98abbbd8e1b90357c6fd169541e4f03b.tar.xz
org.eclipse.cdt-f25a9ffe98abbbd8e1b90357c6fd169541e4f03b.zip
Typo
Change-Id: I99683db5c79bf2551e58c66ba041edccb1b28bcc Signed-off-by: Marc Khouzam <marc.khouzam@ericsson.com>
-rw-r--r--dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/tests/dsf/gdb/framework/BaseTestCase.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/tests/dsf/gdb/framework/BaseTestCase.java b/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/tests/dsf/gdb/framework/BaseTestCase.java
index 29b4a39f1a2..85b4e09ca45 100644
--- a/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/tests/dsf/gdb/framework/BaseTestCase.java
+++ b/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/tests/dsf/gdb/framework/BaseTestCase.java
@@ -59,7 +59,7 @@ import org.junit.rules.Timeout;
* This is the base class for the GDB/MI Unit tests.
* It provides the @Before and @After methods which setup
* and teardown the launch, for each test.
- * If these methods are overwridden by a subclass, the new method
+ * If these methods are overridden by a subclass, the new method
* must call super.baseSetup or super.baseTeardown itself, if this
* code is to be run.
*/
@@ -68,7 +68,7 @@ public class BaseTestCase {
// Timeout value for each individual test
private final static int TEST_TIMEOUT = 5 * 60 * 1000; // 5 minutes in milliseconds
- // Make the current test naem available through testName.getMethodName()
+ // Make the current test name available through testName.getMethodName()
@Rule public TestName testName = new TestName();
// Add a timeout for each test, to make sure no test hangs
@@ -85,7 +85,7 @@ public class BaseTestCase {
// A set of global launch attributes which are not
// reset when we load a new class of tests.
// This allows a Suite to set an attribute
- // The suite is reponsible for clearing those attributes
+ // The suite is responsible for clearing those attributes
// once it is finished
private static Map<String, Object> globalLaunchAttributes = new HashMap<String, Object>();

Back to the top