开始使用 UnitTest++

发布于 2024-11-05 08:54:14 字数 481 浏览 0 评论 0原文

这是我从他们的基本示例中获得的当前代码: http://unittest-cpp.sourceforge.net /UnitTest++.html

#include <unittest++/UnitTest++.h>

TEST(FailSpectacularly)
{
    CHECK(false);
}

int main() {
    return UnitTest::RunAllTests();
}

包含内容存在,但我收到错误:对 UnitTest::Test::* 的未定义引用UnitTest::* 其中 * 是 UnitTest++ 库中的任意类/方法。

我怎样才能让它正确编译?

This is the current code I have from their fundamental example: http://unittest-cpp.sourceforge.net/UnitTest++.html

#include <unittest++/UnitTest++.h>

TEST(FailSpectacularly)
{
    CHECK(false);
}

int main() {
    return UnitTest::RunAllTests();
}

The include exists but I'm receiving errors: undefined reference to UnitTest::Test::* and UnitTest::* where * is some arbitrary class/method within the UnitTest++ library.

How can I get this to compile properly?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

我不咬妳我踢妳 2024-11-12 08:54:14

在这里找到答案: http: //comments.gmane.org/gmane.comp.lang.c%2B%2B.unittest%2B%2B.devel/13

设置库路径-L/usr/include和库 -luunittest++

Found the answer here: http://comments.gmane.org/gmane.comp.lang.c%2B%2B.unittest%2B%2B.devel/13

Set the library path -L/usr/include and the library -lunittest++

无言温柔 2024-11-12 08:54:14

主要供我将来参考,但我通过链接到库最后进行排序。

g++ test.cpp -lunittest++

Mainly for my future reference but I sorted by linking to the library last.

g++ test.cpp -lunittest++
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文