对更改私有成员变量的函数进行单元测试

时间:2020-03-25 19:25:01

标签: c++ unit-testing googletest

我有以下课程:

class foo {
    public:
        foo() : the_count(0) {}
        ~foo() = default;

        void add_one_to_count() { the_count++; };

    private:
        int the_count;
};

在此类中,公共函数更改私有成员变量。如何以一种无需做getter函数就可以验证the_count的值的方式对此进行单元测试?

0 个答案:

没有答案