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