summaryrefslogtreecommitdiff
path: root/tests/test-font-options.cc
blob: 7b42398d31ba8ad272d9f0a8fe33c65dde9e611d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#include <boost/test/unit_test.hpp>
#include <boost/test/test_tools.hpp>
#include <boost/test/floating_point_comparison.hpp>

#include <cairomm/fontoptions.h>

using namespace boost::unit_test;
using namespace Cairo;

void test_excercise()
{
  // just excercise all of the methods
  Cairo::FontOptions options;

  Cairo::FontOptions other;
  options.merge(other);

  options.hash();

  options.set_antialias(Cairo::ANTIALIAS_SUBPIXEL);
  auto antialias = options.get_antialias();
  BOOST_CHECK_EQUAL(Cairo::ANTIALIAS_SUBPIXEL, antialias);

  options.set_subpixel_order(Cairo::SUBPIXEL_ORDER_DEFAULT);
  auto order = options.get_subpixel_order();
  BOOST_CHECK_EQUAL(Cairo::SUBPIXEL_ORDER_DEFAULT, order);

  options.set_hint_style(Cairo::HINT_STYLE_SLIGHT);
  auto hint_style = options.get_hint_style();
  BOOST_CHECK_EQUAL(Cairo::HINT_STYLE_SLIGHT, hint_style);

  options.set_hint_metrics(Cairo::HINT_METRICS_OFF);
  auto metrics = options.get_hint_metrics();
  BOOST_CHECK_EQUAL(Cairo::HINT_METRICS_OFF, metrics);
}

test_suite*
init_unit_test_suite(int argc, char* argv[])
{
  // compile even with -Werror
  if (argc && argv) {}

  test_suite* test= BOOST_TEST_SUITE( "Cairo::Context Tests" );

  test->add (BOOST_TEST_CASE (&test_excercise));

  return test;
}