编写简单的C ++测试

时间:2015-07-15 02:24:58

标签: c++ testing

我的任务是编写一些C ++代码的测试。我做了一个非常简单的函数来反转一个字符串。我用C#编写了测试,但从来没有用C ++编写。 C ++测试是什么样的?

这是我的代码:main接受命令行参数,将其发送到反向以反转字符串并返回它。

include <iostream>
#include <cstring>
using namespace std;

char * reverse(char *s)
{
    int len = strlen(s);
    char *head = s;
    char *tail = &s[len-1];
    while (head < tail)
        swap(*head++, *tail--);
    //cout << s <<endl;
    return s;

}

int main(int argc, char *argv[])
{
    char *s;
    for (int i=1; i < argc; i++)
    {
        s = reverse(argv[i]);
        cout << s<<endl;
    }

}

那么,测试会看起来像吗?:

bool test()
{
   char *s = "haha3";
   char *new_s = reverse(s);
   if (new_s == "3ahah")
       return true;
   return false;

}

有更好的方法吗?语法明智吗?用于测试C ++函数的更好看的代码?

3 个答案:

答案 0 :(得分:4)

c ++单元测试的首选方法是使用测试框架,例如Google TestBoost Test Framework.

使用Google测试,您的测试可以简单:

ASSERT_STREQ("cba", reverse("abc"));

答案 1 :(得分:1)

因为它的c ++你可以这样做:

#include <iostream>
#include <string>

int main()
{
    std::string test = "abc";
    std::cout << std::string(test.rbegin(), test.rend()) << std::endl;

    std::cin.get();
    return 0;
}

请注意:Comparison of c++ unit test frameworks

答案 2 :(得分:1)

没有单一的标准框架。我更喜欢外部驱动的测试,而不是内部驱动的测试,以避免重复编译时和测试运行时如果我只改变一些源文件。

源自Perl的TAP是一个标准,您可以使用它来实现自己的测试,然后使用prove线束。