Avoid some test classes to show up in the documentation

This commit is contained in:
Martchus 2020-05-01 13:14:50 +02:00
parent 43550b6d55
commit 26b0d2d97c
1 changed files with 4 additions and 0 deletions

View File

@ -383,6 +383,8 @@ void ConversionTests::testStringConversions()
CPPUNIT_ASSERT_EQUAL("16 GiB/s"s, bitrateToString(128.0 * 1e6, true));
}
/// \cond
struct ConvertibleToString {
operator std::string() const;
};
@ -404,6 +406,8 @@ struct StringThatDoesNotLikeToBeCopiedOrMoved : public std::string {
}
};
/// \endcond
void ConversionTests::testStringBuilder()
{
// check whether type traits work as expected