use of org.apache.avro.file.CodecFactory in project incubator-gobblin by apache.
the class WriterUtilsTest method testGetCodecFactoryIgnoresCase.
@Test
public void testGetCodecFactoryIgnoresCase() {
CodecFactory codecFactory = WriterUtils.getCodecFactory(Optional.of("SNAPPY"), Optional.<String>absent());
Assert.assertEquals(codecFactory.toString(), "snappy");
codecFactory = WriterUtils.getCodecFactory(Optional.of("snappy"), Optional.<String>absent());
Assert.assertEquals(codecFactory.toString(), "snappy");
}
Aggregations