2022-05-13 23:42:41 -04:00
|
|
|
#include "UnitTest.h"
|
|
|
|
|
#include "Gwen/Controls/ImagePanel.h"
|
|
|
|
|
|
|
|
|
|
using namespace Gwen;
|
|
|
|
|
|
|
|
|
|
class ImagePanel : public GUnit
|
|
|
|
|
{
|
2026-06-03 15:08:51 +01:00
|
|
|
public:
|
|
|
|
|
GWEN_CONTROL_INLINE(ImagePanel, GUnit)
|
2022-05-13 23:42:41 -04:00
|
|
|
{
|
|
|
|
|
// Normal
|
|
|
|
|
{
|
2026-06-03 15:08:51 +01:00
|
|
|
Controls::ImagePanel* img = new Controls::ImagePanel(this);
|
|
|
|
|
img->SetImage(L"gwen.png");
|
|
|
|
|
img->SetBounds(10, 10, 100, 100);
|
2022-05-13 23:42:41 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Missing
|
|
|
|
|
{
|
2026-06-03 15:08:51 +01:00
|
|
|
Controls::ImagePanel* img = new Controls::ImagePanel(this);
|
|
|
|
|
img->SetImage(L"missingimage.png");
|
|
|
|
|
img->SetBounds(120, 10, 100, 100);
|
2022-05-13 23:42:41 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2026-06-03 15:08:51 +01:00
|
|
|
DEFINE_UNIT_TEST(ImagePanel, L"ImagePanel");
|