blob: e8951fb4827ba0e365ae74e52f7791cba49ca7f8 [file] [log] [blame]
package com.bumptech.glide.load.resource;
import org.junit.Before;
import org.junit.Test;
import java.io.ByteArrayInputStream;
import java.io.IOException;
import static junit.framework.Assert.assertEquals;
import static junit.framework.Assert.assertNull;
public class NullDecoderTest {
private NullDecoder decoder;
@Before
public void setUp() {
decoder = new NullDecoder();
}
//TODO: do we really want an empty id here?
@Test
public void testHasValidId() {
assertEquals("", decoder.getId());
}
@Test
public void testReturnsNull() throws IOException {
assertNull(decoder.decode(new ByteArrayInputStream(new byte[0]), 100, 100));
}
}