X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=deconvolution_sharpen_effect_test.cpp;h=ab1a5a4a5fc50b48da348f5feba3180e54a0ac0c;hp=8daeb675969397bb3be460911e5b8491d0b3e78b;hb=8e9f58fec54a4c879035b214fd7411f6ff7b3a32;hpb=b5a446a44ee1f0379e8427f86f5dfa0d40bc0e60 diff --git a/deconvolution_sharpen_effect_test.cpp b/deconvolution_sharpen_effect_test.cpp index 8daeb67..ab1a5a4 100644 --- a/deconvolution_sharpen_effect_test.cpp +++ b/deconvolution_sharpen_effect_test.cpp @@ -1,5 +1,6 @@ // Unit tests for DeconvolutionSharpenEffect. +#include #include #include @@ -9,6 +10,8 @@ #include "image_format.h" #include "test_util.h" +namespace movit { + TEST(DeconvolutionSharpenEffectTest, IdentityTransformDoesNothing) { const int size = 4; @@ -231,3 +234,5 @@ TEST(DeconvolutionSharpenEffectTest, CircularDeconvolutionKeepsAlpha) { expect_equal(expected_alpha, out_data, size, size); } + +} // namespace movit