Removed DOCUMENT ME comments that were generated and applied source code
[utils] / support / spring / src / test / java / org / wamblee / general / spring / SpringBeanFactoryTest.java
index 97254f1fc1ce08fa533e2ca6d560ff0443d3087a..a8d03a9fb4a72d20b23db733af963015ffedcab3 100644 (file)
@@ -19,36 +19,27 @@ import junit.framework.TestCase;
 
 import org.wamblee.general.BeanFactoryException;
 
-
 /**
  * Tests the spring bean factory.
- *
+ * 
  * @author Erik Brakkee
  */
 public class SpringBeanFactoryTest extends TestCase {
     /*
      * (non-Javadoc)
-     *
+     * 
      * @see junit.framework.TestCase#setUp()
      */
-    /**
-     * DOCUMENT ME!
-     *
-     * @throws Exception DOCUMENT ME!
-     */
     @Override
     protected void setUp() throws Exception {
         super.setUp();
     }
 
-    /**
-     * DOCUMENT ME!
-     */
     public void testExistingBeanRefContext() {
-        SpringBeanFactory factory = new SpringBeanFactory("org/wamblee/general/beanRefContext.xml",
-                "test");
+        SpringBeanFactory factory = new SpringBeanFactory(
+            "org/wamblee/general/beanRefContext.xml", "test");
 
-        String            value1  = factory.find(String.class);
+        String value1 = factory.find(String.class);
         assertEquals("hello", value1);
 
         String value2 = (String) factory.find("java.lang.String");
@@ -66,9 +57,6 @@ public class SpringBeanFactoryTest extends TestCase {
         fail();
     }
 
-    /**
-     * DOCUMENT ME!
-     */
     public void testUnknownBeanFactory() {
         try {
             new SpringBeanFactory("org/wamblee/general/beanRefContext.xml",