geopro/tests/smoke_test.cpp

11 lines
332 B
C++
Raw Permalink Blame History

This file contains ambiguous Unicode characters

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.

// gtest 冒烟验证测试工具链vcpkg gtest + ctest已就绪。
// 随 core/data/algo 实现,逐步替换为真实用例
//(坐标 rebase/轴向、colorBar LUT 映射、v[j][i] 灌点序、IDW 正确性 等,设计 §12
#include <gtest/gtest.h>
TEST(SmokeTest, ToolchainWorks)
{
EXPECT_EQ(1 + 1, 2);
}