This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#include <gtest/gtest.h>
#include <qwt_text.h>
// 冒烟:验证项目能编译 Qwt 头文件并链接 Qwt 静态库(QwtText 为值类型,无需 QApplication)。
// 保障 Qwt 集成(cmake/qwt.cmake + 官方 Qt6)持续可用,不回归。
TEST(QwtSmoke, LinksAgainstQwt) {
QwtText t(QStringLiteral("hello"));
EXPECT_EQ(t.text(), QStringLiteral("hello"));
}