3
Anonim ad alanları kodu test edilemez kılar
İşte tipik bir C ++ kodu: 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