summaryrefslogtreecommitdiffhomepage
path: root/test/rope_test/crope.test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/rope_test/crope.test.cpp')
-rw-r--r--test/rope_test/crope.test.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/rope_test/crope.test.cpp b/test/rope_test/crope.test.cpp
index 4565900..9b9b9eb 100644
--- a/test/rope_test/crope.test.cpp
+++ b/test/rope_test/crope.test.cpp
@@ -13,6 +13,7 @@
BOOST_AUTO_TEST_CASE(allocator_should_succeed_in_empty)
{
auto rope = ocl::tproc::crope("");
+
BOOST_TEST(rope.empty() == true);
}
@@ -20,5 +21,6 @@ BOOST_AUTO_TEST_CASE(allocator_should_not_succeed_in_empty)
{
auto rope = ocl::tproc::crope("foobar");
// rope += ".txt";
+
BOOST_TEST(rope.empty() == false);
}