1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.apache.commons.imaging.formats.bmp;
18
19 import java.io.File;
20 import java.io.IOException;
21 import java.util.List;
22
23 import org.apache.commons.imaging.AbstractImagingTest;
24 import org.apache.commons.imaging.ImageFormat;
25 import org.apache.commons.imaging.ImageFormats;
26 import org.apache.commons.imaging.Imaging;
27 import org.apache.commons.imaging.ImagingException;
28
29 public abstract class AbstractBmpTest extends AbstractImagingTest {
30
31 private static final ImageFilter IMAGE_FILTER = AbstractBmpTest::isBmp;
32
33 protected static List<File> getBmpImages() throws IOException, ImagingException {
34 return getTestImages(IMAGE_FILTER);
35 }
36
37 private static boolean isBmp(final File file) throws IOException {
38 final ImageFormat format = Imaging.guessFormat(file);
39 return format == ImageFormats.BMP;
40 }
41
42 }