| 45 | Assert::IsTrue(std::holds_alternative<at::Special::Auto>(pSheet->Resolve<at::height>())); |
| 46 | } |
| 47 | TEST_METHOD(Absent) |
| 48 | { |
| 49 | using namespace p2c::gfx::lay::sty; |
| 50 | auto pSheet = Stylesheet::Make(); |
| 51 | pSheet->InsertRaw(at::height::key, std::wstring(at::Special::Auto::key)); |
| 52 | Assert::IsTrue(std::holds_alternative<std::monostate>(pSheet->Resolve<at::width>())); |
| 53 | } |
| 54 | TEST_METHOD(Value) |
| 55 | { |
| 56 | using namespace p2c::gfx::lay::sty; |
nothing calls this directly
no test coverage detected