From f8b49d20c690d19e9cd5dd9cddc3a834e526ba87 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 28 Dec 2014 02:50:49 +0000 Subject: Another test. --- test/smpte_load_font_test.cc | 36 ++++++++++++++++++++++++++++++++++++ test/wscript | 1 + 2 files changed, 37 insertions(+) create mode 100644 test/smpte_load_font_test.cc (limited to 'test') diff --git a/test/smpte_load_font_test.cc b/test/smpte_load_font_test.cc new file mode 100644 index 00000000..4f9d2128 --- /dev/null +++ b/test/smpte_load_font_test.cc @@ -0,0 +1,36 @@ +/* + Copyright (C) 2014 Carl Hetherington + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + +*/ + +#include "smpte_load_font.h" +#include +#include +#include + +BOOST_AUTO_TEST_CASE (smpte_load_font_test1) +{ + xmlpp::Document doc; + xmlpp::Element* text = doc.create_root_node("Font"); + + text->set_attribute("ID", "my-great-id"); + text->add_child_text("urn:uuid:my-great-urn"); + dcp::SMPTELoadFont lf (cxml::ConstNodePtr (new cxml::Node (text))); + + BOOST_CHECK_EQUAL (lf.id, "my-great-id"); + BOOST_CHECK_EQUAL (lf.urn, "my-great-urn"); +} diff --git a/test/wscript b/test/wscript index ad1f0c02..dee75aec 100644 --- a/test/wscript +++ b/test/wscript @@ -43,6 +43,7 @@ def build(bld): read_dcp_test.cc recovery_test.cc round_trip_test.cc + smpte_load_font_test.cc subtitle_tests.cc test.cc text_test.cc -- cgit v1.2.3