From c7c2502bc261bf3d81e96ddde9e189b9527dbc9e Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Fri, 2 May 2014 10:41:50 +0100 Subject: These tests need a valid Film. --- test/subrip_test.cc | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'test') diff --git a/test/subrip_test.cc b/test/subrip_test.cc index 3ea68737f..de102369f 100644 --- a/test/subrip_test.cc +++ b/test/subrip_test.cc @@ -125,7 +125,7 @@ BOOST_AUTO_TEST_CASE (subrip_content_test) /** Test parsing of full SubRip file content */ BOOST_AUTO_TEST_CASE (subrip_parse_test) { - shared_ptr film = new_test_film ("subrip_test"); + shared_ptr film = new_test_film ("subrip_parse_test"); shared_ptr content (new SubRipContent (film, "test/data/subrip.srt")); content->examine (shared_ptr ()); BOOST_CHECK_EQUAL (content->full_length(), DCPTime::from_seconds ((3 * 60) + 56.471)); @@ -184,12 +184,11 @@ BOOST_AUTO_TEST_CASE (subrip_parse_test) /** Test rendering of a SubRip subtitle */ BOOST_AUTO_TEST_CASE (subrip_render_test) { - shared_ptr content (new SubRipContent (shared_ptr (), "test/data/subrip.srt")); + shared_ptr film = new_test_film ("subrip_render_test"); + shared_ptr content (new SubRipContent (film, "test/data/subrip.srt")); content->examine (shared_ptr ()); BOOST_CHECK_EQUAL (content->full_length(), DCPTime::from_seconds ((3 * 60) + 56.471)); - shared_ptr film = new_test_film ("subrip_render_test"); - shared_ptr decoder (new SubRipDecoder (content)); list > cts = decoder->get_text_subtitles (ContentTime::from_seconds (109), ContentTime::from_seconds (110)); BOOST_CHECK_EQUAL (cts.size(), 1); -- cgit v1.2.3