]> git.sesse.net Git - movit/blobdiff - unsharp_mask_effect_test.cpp
Move everything into “namespace movit”.
[movit] / unsharp_mask_effect_test.cpp
index a44c4073052352b7a90e07e0e15fb784be4c764c..69ea5f706af5a31e025c790cf7c524619632c4fd 100644 (file)
@@ -9,6 +9,8 @@
 #include "test_util.h"
 #include "unsharp_mask_effect.h"
 
+namespace movit {
+
 TEST(UnsharpMaskEffectTest, NoAmountDoesNothing) {
        const int size = 4;
 
@@ -72,3 +74,5 @@ TEST(UnsharpMaskEffectTest, UnblursGaussianBlur) {
        // Add some leeway for the rest; unsharp masking is not expected to be extremely good.
        expect_equal(expected_data, out_data, size, size, 0.1, 0.001);
 }
+
+}  // namespace movit