Home
last modified time | relevance | path

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

/freebsd/contrib/googletest/googletest/test/
H A Dgtest_unittest.cc7548 struct ConstructionCounting { struct
7549 ConstructionCounting() { ++default_ctor_calls; } in ConstructionCounting() function
7550 ~ConstructionCounting() { ++dtor_calls; } in ~ConstructionCounting() argument
7551 ConstructionCounting(const ConstructionCounting&) { ++copy_ctor_calls; } in ConstructionCounting() argument
7552 ConstructionCounting(ConstructionCounting&&) noexcept { ++move_ctor_calls; } in ConstructionCounting() function
7553 ConstructionCounting& operator=(const ConstructionCounting&) { in operator =() argument
7557 ConstructionCounting& operator=(ConstructionCounting&&) noexcept { in operator =() argument
7579 int ConstructionCounting::default_ctor_calls = 0; argument