aboutsummaryrefslogtreecommitdiffstats
path: root/test/gmock_output_test_.cc
diff options
context:
space:
mode:
authorvladlosev <vladlosev@8415998a-534a-0410-bf83-d39667b30386>2009-10-21 06:15:34 +0000
committervladlosev <vladlosev@8415998a-534a-0410-bf83-d39667b30386>2009-10-21 06:15:34 +0000
commit6c54a5e1f91e033fa937be5d647ce43dee597ad8 (patch)
tree957c63813fb35aecf11afed11259dd62ac95e3cf /test/gmock_output_test_.cc
parent7db42db1c649f1613813385d4a180630ad1dc95a (diff)
downloadgoogletest-6c54a5e1f91e033fa937be5d647ce43dee597ad8.tar.gz
googletest-6c54a5e1f91e033fa937be5d647ce43dee597ad8.tar.bz2
googletest-6c54a5e1f91e033fa937be5d647ce43dee597ad8.zip
Enables more verbose output for expectations (by Sverre Sundsdal); Fixes information loss warning when compiled by VC8.0 with /Wp64; Skips two tests on Windows Mobile that don't work there.
Diffstat (limited to 'test/gmock_output_test_.cc')
-rw-r--r--test/gmock_output_test_.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/gmock_output_test_.cc b/test/gmock_output_test_.cc
index 8244f10b..c33dc6fb 100644
--- a/test/gmock_output_test_.cc
+++ b/test/gmock_output_test_.cc
@@ -161,6 +161,10 @@ TEST_F(GMockOutputTest, UnsatisfiedPrerequisites) {
foo_.Bar2(1, 0);
}
+TEST_F(GMockOutputTest, UnsatisfiedWith) {
+ EXPECT_CALL(foo_, Bar2(_, _)).With(Ge());
+}
+
TEST_F(GMockOutputTest, UnsatisfiedExpectation) {
EXPECT_CALL(foo_, Bar(_, _, _));
EXPECT_CALL(foo_, Bar2(0, _))