我是否需要将构造函数/析构函数添加到c ++测试类中?

时间:2013-01-08 17:18:13

标签: c++ class compiler-errors

我的测试类只是一个cpp文件,我不需要.h文件。 这是我的test.cpp:

#include <......>


.

class FakeMasTest: NS_ZINC::UnitTestSandbox,
public CppUnit::TestFixture {

    void test1() {

    }
    void test2() {

    }
    void test3() {

    }

    CPPUNIT_TEST_SUITE(FakeMasTest);
    CPPUNIT_TEST(test1);
    CPPUNIT_TEST(test2);
    CPPUNIT_TEST(test3);
    CPPUNIT_TEST_SUITE_END();
};

我说错误expected constructor, destructor, or type conversion before 'class'

由于它只是一个测试类,我不需要任何构造函数和析构函数,有人知道如何处理它吗?

0 个答案:

没有答案