Bitmap.CreateBitmap在JUnit Testing Android Studio中返回null

时间:2017-11-23 13:17:16

标签: java android junit bitmap createbitmap

我需要创建一个虚假的位图图像进行测试(JUnit Test)我个人添加和获取自定义LinkedList的方法,但Bitmap.createBitmap返回错误:

java.lang.RuntimeException:android.graphics.Bitmap中的方法createBitmap没有被模拟。

这是我的JUnitTest的代码:

public class TicketsIteratorTest {

    Bitmap img_Bmp;
    TicketsIterator<Bitmap> TicketsList = new TicketsIterator();

    /*
     * Test for the add e get methods, check if the element just insert it's the same of the one just extract.
     */
    @Test
    public void Add_n_Get() throws Exception {
        int i = 0, numIMG = 100;
        Bitmap[] IMG_Generated;
        IMG_Generated = new Bitmap[numIMG];

        // Generate numIMG of imagine to insert into the Iterator and it save each one of it into an
        // Bitmap array usefull for testing of the get method
        while (i <= numIMG) {
            // Generation of the fake Ticket Bitmap
            try {
                img_Bmp = Bitmap.createBitmap(100, 100, Bitmap.Config.ARGB_8888);

                IMG_Generated[i] = img_Bmp;

            } catch (Exception e) {
                // Print the cause of the error just generated
                e.getCause().printStackTrace();
            }

            // Addition of the imagine just created
            TicketsList.add(img_Bmp);

            i++;
        }

        // Test if the imagine inserted it is correct
        while (i <= numIMG) {
            assertTrue(IMG_Generated[i] == TicketsList.get(IMG_Generated[i]));
            i++;
        }
    }

感谢您的帮助。

2 个答案:

答案 0 :(得分:2)

您是在常规单元测试或Android测试中使用此功能吗?如果从正常的单元测试中调用它,则android类将被替换为空/ null实现。这意味着调用Bitmap.createBitmap()将始终返回null,甚至不检查您的参数等。

过去我使用Bitmap和Base64OutputStream有类似的问题。一切似乎都工作得非常好,除了后面没有任何事情发生;)每当你看到类似的行为时,检查类是否不是来自Android框架 - 这很可能是问题的原因。

我希望就是这样,我可以帮助你。我正在使用PowerMock并且只是在我的情况下模拟Bitmap类来返回Bitmap模拟实例。

最好的问候,

Dariusz Wiechecki

答案 1 :(得分:0)

Instrumentation Test在这种情况下会起作用,Unit test case会为位图返回null(失败),因为它与Android框架有关。

我在Unit test案例中从连接设备(移动)文件路径读取文件时遇到了类似的问题,它无法读取,但它可以在Instrumentation Test中运行