openrw/tests/test_VisualFX.cpp

13 lines
266 B
C++
Raw Normal View History

#include <boost/test/unit_test.hpp>
#include <render/VisualFX.hpp>
BOOST_AUTO_TEST_SUITE(VisualFXTests)
2016-09-09 21:13:22 +01:00
BOOST_AUTO_TEST_CASE(test_light_data) {
VisualFX fx(VisualFX::Light);
BOOST_CHECK_EQUAL(fx.getType(), VisualFX::Light);
}
BOOST_AUTO_TEST_SUITE_END()