Add even more debug output to the test

This commit is contained in:
Vadim Zeitlin
2018-06-21 16:50:59 +02:00
parent 96cca10328
commit 1ce009e73a

View File

@@ -183,7 +183,9 @@ TEST_CASE("wxHtmlPrintout::Pagination", "[html][print]")
text
)
);
INFO("Using base font size " << adjFontSize);
const wxSize ext = dc.GetTextExtent("Something");
WARN("Using base font size " << adjFontSize
<< ", text extent of \"Something\" is " << ext.x << "x" << ext.y);
CHECK( CountPages(pr) == 3 );
}