1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-09-15 06:52:34 +02:00
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 22:13:22 +02:00
BOOST_AUTO_TEST_CASE(test_light_data) {
2018-08-08 01:24:39 +02:00
auto fx = std::make_unique<LightFX>();
2016-09-09 22:13:22 +02:00
2018-08-08 01:24:39 +02:00
BOOST_CHECK_EQUAL(fx->getType(), Light);
}
BOOST_AUTO_TEST_SUITE_END()