X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=alpha_multiplication_effect_test.cpp;h=2aa9b6d98949d49dc9b554071e8474583e381487;hp=62863e92ac1f846c60161b8d6fc8d99e203088b3;hb=refs%2Fheads%2Fepoxy;hpb=37f56fcbe571b2322243f6de59494bf9e0cbb37a diff --git a/alpha_multiplication_effect_test.cpp b/alpha_multiplication_effect_test.cpp index 62863e9..2aa9b6d 100644 --- a/alpha_multiplication_effect_test.cpp +++ b/alpha_multiplication_effect_test.cpp @@ -1,12 +1,14 @@ // Unit tests for AlphaMultiplicationEffect. -#include +#include #include "effect_chain.h" #include "gtest/gtest.h" #include "image_format.h" #include "test_util.h" +namespace movit { + TEST(AlphaMultiplicationEffectTest, SimpleTest) { const int size = 3; float data[4 * size] = { @@ -25,3 +27,5 @@ TEST(AlphaMultiplicationEffectTest, SimpleTest) { expect_equal(expected_data, out_data, 4, size); } + +} // namespace movit