'Nothing here' for CLion Boost Test results?

I'm still relatively new to Boost and CLion, but when I try and run the Test Suite described below, which should return a pass and a fail (unless I am really misunderstanding something!) , I get a 'nothing here'.

#define BOOST_TEST_MODULE My Test
#include <boost/test/unit_test.hpp>

BOOST_AUTO_TEST_SUITE(utillity)

BOOST_AUTO_TEST_CASE( test_case3 )
{
BOOST_CHECK( true );
}

BOOST_AUTO_TEST_CASE( test_case4 )
{
BOOST_CHECK( false );
}

BOOST_AUTO_TEST_SUITE_END()

Is this a bug, or am I missing something obvious? 

2

Please sign in to leave a comment.