svn commit: r13542 - trunk/tests/org/argouml/model/TestModelFacade3.java
| Newsgroups | gmane.comp.lang.uml.argouml.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: tfmorris
Date: 2007-09-11 13:21:18-0700
New Revision: 13542
Modified:
trunk/tests/org/argouml/model/TestModelFacade3.java
Log:
typos
Modified: trunk/tests/org/argouml/model/TestModelFacade3.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/tests/org/argouml/model/TestModelFacade3.java?view=diff&rev=13542&p1=trunk/tests/org/argouml/model/TestModelFacade3.java&p2=trunk/tests/org/argouml/model/TestModelFacade3.java&r1=13541&r2=13542
==============================================================================
--- trunk/tests/org/argouml/model/TestModelFacade3.java (original)
+++ trunk/tests/org/argouml/model/TestModelFacade3.java 2007-09-11 13:21:18-0700
@@ -86,9 +86,8 @@
|| methodToTest.getName().equals("toString");
}
- /*
- * @see junit.framework.TestCase#runTest()
- */
+
+ @Override
protected void runTest() throws Throwable {
if (!methodForbidden()) {
if (methodToTest.getParameterTypes() != null
@@ -134,7 +133,7 @@
/*
* this call could easily fall if there is e.g. no public
* default constructor. If it fails tweak the if/else tree
- * above to accomodate the parameter or check if we need to
+ * above to accommodate the parameter or check if we need to
* test the particular method at all.
*/
foo[i] = params[i].newInstance();
@@ -170,14 +169,13 @@
}
}
- /*
- * @see junit.framework.TestCase#setUp()
- */
+
+ @Override
protected void setUp() throws Exception {
super.setUp();
InitializeModel.initializeDefault();
facade = Model.getFacade();
- assertNotNull("Cound not get Facade", facade);
+ assertNotNull("Could not get Facade", facade);
}
}