X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=blur_effect_test.cpp;h=fb4e0250ef333a0b5e4586ae88ac681d0463340b;hp=d458e45d1fe096174ade4c8654c230cfe6edf3fc;hb=a5f32397f9c23fa8644fe195865d6c36685cf866;hpb=ac5f7aa64ab690120a71fe45ee4b9bbc56610191 diff --git a/blur_effect_test.cpp b/blur_effect_test.cpp index d458e45..fb4e025 100644 --- a/blur_effect_test.cpp +++ b/blur_effect_test.cpp @@ -1,9 +1,15 @@ // Unit tests for BlurEffect. +#include #include +#include -#include "test_util.h" -#include "gtest/gtest.h" #include "blur_effect.h" +#include "effect_chain.h" +#include "gtest/gtest.h" +#include "image_format.h" +#include "test_util.h" + +namespace movit { TEST(BlurEffectTest, IdentityTransformDoesNothing) { const int size = 4; @@ -95,3 +101,5 @@ TEST(BlurEffectTest, BlurTwoDotsLargeRadius) { expect_equal(expected_data, out_data, size, size, 0.1f, 1e-3); } + +} // namespace movit