X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=support%2Fgeneral%2Fsrc%2Ftest%2Fjava%2Forg%2Fwamblee%2Fgeneral%2FBeanKernelTest.java;h=941932244e11de14e90d5c140e9783c9ae48ba04;hb=8de36ff0206c996baf3ee4adc3e2293b12ff5f39;hp=61c4533f1018aed8b95e3acdc294aaa12eb543d4;hpb=89c06d4d52b46c154128c97d6e758fa1f4fc7a6e;p=utils diff --git a/support/general/src/test/java/org/wamblee/general/BeanKernelTest.java b/support/general/src/test/java/org/wamblee/general/BeanKernelTest.java index 61c4533f..94193224 100644 --- a/support/general/src/test/java/org/wamblee/general/BeanKernelTest.java +++ b/support/general/src/test/java/org/wamblee/general/BeanKernelTest.java @@ -17,35 +17,34 @@ package org.wamblee.general; import junit.framework.TestCase; - /** * Tests the bean kernel. The lookup of the bean factory itself can be tested * only partially. Using a global property file for all test cases would tie all * test cases together therefore no global property file is used. - * + * * @author Erik Brakkee */ public class BeanKernelTest extends TestCase { /** * Loads the bean factory based on a property file configuration. Verifies * the correct bean factory is loaded. - * + * */ public void testLoadBeanFactoryFromProperties() { - BeanFactory factory = BeanKernel.lookupBeanFactory( - "org/wamblee/general/beankernel.properties"); + BeanFactory factory = BeanKernel + .lookupBeanFactory("org/wamblee/general/beankernel.properties"); assertTrue(factory instanceof TestBeanFactory); } /** - * Loads the bean factory based on a non-existing property file. - * Verifies that BeanFactoryException is thrown. - * + * Loads the bean factory based on a non-existing property file. Verifies + * that BeanFactoryException is thrown. + * */ public void testNonExistentPropertyFile() { try { - BeanKernel.lookupBeanFactory( - "org/wamblee/general/beankernel-nonexistent.properties"); + BeanKernel + .lookupBeanFactory("org/wamblee/general/beankernel-nonexistent.properties"); } catch (BeanFactoryException e) { return; // ok } @@ -54,15 +53,14 @@ public class BeanKernelTest extends TestCase { } /** - * Loads the bean factory based on a property file with a non-existing - * bean factory defined in it. - * Verifies that BeanFactoryException is thrown. - * + * Loads the bean factory based on a property file with a non-existing bean + * factory defined in it. Verifies that BeanFactoryException is thrown. + * */ public void testNonExistentBeanFactory() { try { - BeanKernel.lookupBeanFactory( - "org/wamblee/general/beankernel-wrong.properties"); + BeanKernel + .lookupBeanFactory("org/wamblee/general/beankernel-wrong.properties"); } catch (BeanFactoryException e) { return; // ok } @@ -73,13 +71,13 @@ public class BeanKernelTest extends TestCase { /** * Retrieves a bean factory throug the bean kernel. Verifies that beans can * be retrieved. - * + * */ public void testRetrieveFactory() { BeanKernel.overrideBeanFactory(new TestBeanFactory()); // bypass - // default - // property - // lookup + // default + // property + // lookup BeanFactory factory = BeanKernel.getBeanFactory(); assertNotNull(factory);