X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=support%2Fcdi%2Fsrc%2Ftest%2Fjava%2Forg%2Fwamblee%2Fcdi%2FCdiInjectorTest.java;h=13946b3aeeee22efd714fc7f9b8d3e99861dfcc3;hb=5bd45d22cbceae0cd261e92f62e9facc96571a65;hp=53d7df913176c607803afcb1f2d4b0b233c64b94;hpb=1891dd5d48c41cbeaa700c43ede926f31a8e810b;p=utils diff --git a/support/cdi/src/test/java/org/wamblee/cdi/CdiInjectorTest.java b/support/cdi/src/test/java/org/wamblee/cdi/CdiInjectorTest.java index 53d7df91..13946b3a 100644 --- a/support/cdi/src/test/java/org/wamblee/cdi/CdiInjectorTest.java +++ b/support/cdi/src/test/java/org/wamblee/cdi/CdiInjectorTest.java @@ -17,23 +17,51 @@ package org.wamblee.cdi; import static junit.framework.Assert.*; +import org.junit.After; +import org.junit.Before; import org.junit.Test; +import org.wamblee.inject.InjectorBuilder; -public class CdiInjectorTest { +public class CdiInjectorTest extends BaseTestFixture { - - @Test - public void testInject() { - fail(); + private BeanManagerSetup manager; + + @Before + public void setUp() throws Exception { + super.setUp(); + manager = new BeanManagerSetup(); + manager.initialize(); } - + + @After + public void tearDown() throws Exception { + manager.shutdown(); + super.tearDown(); + } + @Test - public void testWrongType() { - fail(); + public void testInject() { + CdiInjector injector = new CdiInjector(manager.getBeanManager(), + MyPojo.class); + MyPojo pojo = new MyPojo(); + injector.inject(pojo); + assertNotNull(pojo.getSingleton()); } - + + @Test(expected = IllegalArgumentException.class) + public void testWrongType() { + CdiInjector injector = new CdiInjector(manager.getBeanManager(), + String.class); + MyPojo pojo = new MyPojo(); + injector.inject(pojo); + } + @Test - public void testNullObject() { - fail(); + public void testNullObject() { + CdiInjector injector = new CdiInjector(manager.getBeanManager(), + MyPojo.class); + injector.inject(null); + + // ok should simply ignore. } }