@Test(expected = MappingException.class) public void shouldFailToFindConstructor() { directive.setTargetClass(SelfFactory.class); byConstructor.create(directive); }
@Test public void shouldCreateByConstructor() { directive.setTargetClass(String.class); assertEquals("", byConstructor.create(directive)); }