1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-09-02 08:39:49 +02:00
openrw/tests/test_VisualFX.cpp
2018-08-21 21:51:28 +02:00

13 lines
266 B
C++

#include <boost/test/unit_test.hpp>
#include <render/VisualFX.hpp>
BOOST_AUTO_TEST_SUITE(VisualFXTests)
BOOST_AUTO_TEST_CASE(test_light_data) {
auto fx = std::make_unique<LightFX>();
BOOST_CHECK_EQUAL(fx->getType(), Light);
}
BOOST_AUTO_TEST_SUITE_END()