mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-08 12:18:50 +02:00
* Pass zoneId on zone creaton and make it const Refactor IZone and Zone - make methods const and remove SetId * Update tests * Fix Grid layout zone order
47 lines
1.2 KiB
C++
47 lines
1.2 KiB
C++
#include "pch.h"
|
|
#include "lib\Zone.h"
|
|
#include "lib\Settings.h"
|
|
|
|
#include "Util.h"
|
|
|
|
using namespace Microsoft::VisualStudio::CppUnitTestFramework;
|
|
|
|
namespace FancyZonesUnitTests
|
|
{
|
|
TEST_CLASS(ZoneUnitTests)
|
|
{
|
|
private:
|
|
RECT m_zoneRect{ 10, 10, 200, 200 };
|
|
HINSTANCE m_hInst{};
|
|
|
|
TEST_METHOD_INITIALIZE(Init)
|
|
{
|
|
m_hInst = (HINSTANCE)GetModuleHandleW(nullptr);
|
|
}
|
|
|
|
public:
|
|
TEST_METHOD(TestCreateZone)
|
|
{
|
|
winrt::com_ptr<IZone> zone = MakeZone(m_zoneRect, 1);
|
|
Assert::IsNotNull(&zone);
|
|
CustomAssert::AreEqual(m_zoneRect, zone->GetZoneRect());
|
|
}
|
|
|
|
TEST_METHOD(TestCreateZoneZeroRect)
|
|
{
|
|
RECT zoneRect{ 0, 0, 0, 0 };
|
|
winrt::com_ptr<IZone> zone = MakeZone(zoneRect, 1);
|
|
Assert::IsNotNull(&zone);
|
|
CustomAssert::AreEqual(zoneRect, zone->GetZoneRect());
|
|
}
|
|
|
|
TEST_METHOD(GetSetId)
|
|
{
|
|
constexpr size_t zoneId = 123;
|
|
winrt::com_ptr<IZone> zone = MakeZone(m_zoneRect, zoneId);
|
|
|
|
Assert::AreEqual(zone->Id(), zoneId);
|
|
}
|
|
};
|
|
}
|