blob: 2810cdadbb3dfddb1add498b50821e695869fbf6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#define BOOST_TEST_MODULE UI
#include <boost/test/unit_test.hpp>
#include <stream_support.h>
#include "testMainWindow.h"
#include <gfx/models/texture.h>
#include <resource.h>
#include <ui/svgIcon.h>
constexpr GLsizei RENDER_SIZE = 64;
BOOST_GLOBAL_FIXTURE(TestMainWindowAppBase);
BOOST_AUTO_TEST_CASE(LoadFromFile)
{
SvgIcon svg(ImageDimensions {RENDER_SIZE}, Resource::mapPath("ui/icon/rails.svg"));
const auto size = Texture::getSize(svg.texture);
BOOST_CHECK_EQUAL(size, TextureDimensions(RENDER_SIZE, RENDER_SIZE, 1));
Texture::save(svg.texture, "/tmp/rails.tga");
}
|