Home
last modified time | relevance | path

Searched defs:ConstructionCounting (Results 1 – 1 of 1) sorted by relevance

/third_party/googletest/googletest/test/
Dgtest_unittest.cc7529 struct ConstructionCounting { struct
7530 ConstructionCounting() { ++default_ctor_calls; } in ConstructionCounting() argument
7531 ~ConstructionCounting() { ++dtor_calls; } in ~ConstructionCounting() argument
7532 ConstructionCounting(const ConstructionCounting&) { ++copy_ctor_calls; } in ConstructionCounting() argument
7533 ConstructionCounting(ConstructionCounting&&) noexcept { ++move_ctor_calls; } in ConstructionCounting() function
7534 ConstructionCounting& operator=(const ConstructionCounting&) { in operator =() argument
7538 ConstructionCounting& operator=(ConstructionCounting&&) noexcept { in operator =() argument
7560 int ConstructionCounting::default_ctor_calls = 0; argument