From 9a3fbde9a0052d722dd73ce0dbf0d69976d89f73 Mon Sep 17 00:00:00 2001 From: Jim Graham Date: Tue, 9 Apr 2024 10:28:56 -0700 Subject: [PATCH] better output from engine layer unit test failures (flutter/engine#51975) The engine has ostream conversions for most Skia objects, but none of the test files include the files where they are defined. Adding the include file to the `layer_test.h` file will include them on any file which does unit testing on the engine layers. --- engine/src/flutter/flow/testing/layer_test.h | 1 + 1 file changed, 1 insertion(+) diff --git a/engine/src/flutter/flow/testing/layer_test.h b/engine/src/flutter/flow/testing/layer_test.h index 00b08fdc56c..7db84810146 100644 --- a/engine/src/flutter/flow/testing/layer_test.h +++ b/engine/src/flutter/flow/testing/layer_test.h @@ -15,6 +15,7 @@ #include "flutter/flow/testing/mock_raster_cache.h" #include "flutter/fml/macros.h" +#include "flutter/testing/assertions_skia.h" #include "flutter/testing/canvas_test.h" #include "flutter/testing/display_list_testing.h" #include "flutter/testing/mock_canvas.h"