Home
last modified time | relevance | path

Searched refs:IntWrapper (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/googletest/googletest/test/
H A Dgoogletest-param-test-test.cc248 class IntWrapper { class
250 explicit IntWrapper(int a_value) : value_(a_value) {} in IntWrapper() function in IntWrapper
251 IntWrapper(const IntWrapper& other) : value_(other.value_) {} in IntWrapper() function in IntWrapper
253 IntWrapper operator=(const IntWrapper& other) { in operator =()
258 IntWrapper operator+(int other) const { return IntWrapper(value_ + other); } in operator +()
259 bool operator<(const IntWrapper& other) const { in operator <()
269 const ParamGenerator<IntWrapper> gen = Range(IntWrapper(0), IntWrapper(2)); in TEST()
270 ParamGenerator<IntWrapper>::iterator it = gen.begin(); in TEST()