blob: 0adc0b0388389337748779c86033b0b40722a552 [file] [log] [blame]
#include "flutter/shell/platform/windows/testing/win32_window_test.h"
#include "gtest/gtest.h"
namespace flutter {
namespace testing {
TEST(Win32WindowTest, CreateDestroy) {
Win32WindowTest window;
ASSERT_TRUE(TRUE);
}
TEST(Win32WindowTest, GetDpiAfterCreate) {
Win32WindowTest window;
ASSERT_TRUE(window.GetDpi() > 0);
}
} // namespace testing
} // namespace flutter