Give an error if a non-number is passed to dcpomatic2_create -s (#2488).
[dcpomatic.git] / test / util_test.cc
index a45c144b1c5056fe48e466b36ba1d04b6f89aff4..49d0b3bc297ab3458ddae7ab6691234a1508b636 100644 (file)
@@ -35,7 +35,6 @@
 
 
 using std::list;
-using std::shared_ptr;
 using std::string;
 using std::vector;
 #if BOOST_VERSION >= 106100
@@ -148,3 +147,11 @@ BOOST_AUTO_TEST_CASE (copy_in_bits_test)
                check_file ("build/test/random.dat", "build/test/random.dat2");
        }
 }
+
+
+BOOST_AUTO_TEST_CASE(word_wrap_test)
+{
+       BOOST_CHECK_EQUAL(word_wrap("hello world", 8), "hello \nworld\n");
+       BOOST_CHECK(word_wrap("hello this is a longer bit of text and it should be word-wrapped", 31) == string{"hello this is a longer bit of \ntext and it should be word-\nwrapped\n"});
+       BOOST_CHECK_EQUAL(word_wrap("hellocan'twrapthissadly", 5), "hello\ncan't\nwrapt\nhissa\ndly\n");
+}