// Name: tests/testimage.h
// Purpose: Unit test helpers for dealing with wxImage.
// Author: Vadim Zeitlin
-// RCS-ID: $Id$
// Copyright: (c) 2011 Vadim Zeitlin <vadim@wxwidgets.org>
// Licence: wxWindows licence
///////////////////////////////////////////////////////////////////////////////
static std::string toString(const wxImage& image)
{
- return wxString::Format("image of size %d*%d",
+ return wxString::Format("image of size %d*%d with%s alpha",
image.GetWidth(),
- image.GetHeight())
+ image.GetHeight(),
+ image.HasAlpha() ? "" : "out")
.ToStdString();
}
};