Simplify showing colour values in failing unit tests

Use wxColour::GetAsString() instead of reimplementing it in the test.
This commit is contained in:
Vadim Zeitlin 2023-05-15 20:42:34 +01:00
parent 02eb3a26b6
commit 5b9b817aaa
2 changed files with 1 additions and 42 deletions

View file

@ -11,35 +11,9 @@
#include "asserthelper.h"
namespace wxTestPrivate
{
std::ostream& operator<<(std::ostream& os, const ColourChannel& cc)
{
os.width(2);
os.fill('0');
os << static_cast<int>(cc.m_value);
return os;
}
}
std::ostream& operator<<(std::ostream& os, const wxColour& c)
{
using wxTestPrivate::ColourChannel;
os << std::hex << std::noshowbase
<< "("
<< ColourChannel(c.Red()) << ", "
<< ColourChannel(c.Green()) << ", "
<< ColourChannel(c.Blue());
if ( const unsigned char a = c.Alpha() )
{
os << ", " << ColourChannel(a);
}
os << ")";
os << c.GetAsString(wxC2S_HTML_SYNTAX);
return os;
}