}
@Test
public void createDefaultFactory() throws Exception {
ConfigurationFactory<Example> factory = factoryFactory.create(Example.class, validator, Jackson.newObjectMapper(), "dw");
final Example example = factory.build(validFile);
assertThat(example.getName())
.isEqualTo("Coda Hale");
}