3
익명 네임 스페이스로 코드를 테스트 할 수 없음
일반적인 C ++ 코드는 다음과 같습니다. foo.hpp #pragma once class Foo { public: void f(); void g(); ... }; foo.cpp #include "foo.hpp" namespace { const int kUpperX = 111; const int kAlternativeX = 222; bool match(int x) { return x < kUpperX || x == kAlternativeX; } } // namespace …
12
c++
unit-testing