Home | History | Annotate | Download | only in test

Lines Matching defs:converted

389 // Tests that an Action<From> object can be converted to a
515 // Tests that the type of the value passed into Return is converted into T
522 bool* converted() const { return converted_; }
532 ToType(const FromType& x) { *x.converted() = true; }
536 bool converted = false;
537 FromType x(&converted);
539 EXPECT_TRUE(converted) << "Return must convert its argument in its own "
541 converted = false;
543 EXPECT_FALSE(converted) << "Action must NOT convert its argument "