Back to home page

sPhenix code displayed by LXR

 
 

    


Warning, /JETSCAPE/external_packages/googletest/googlemock/test/gmock_output_test_golden.txt is written in an unsupported language. File is not indexed.

0001 [ RUN      ] GMockOutputTest.ExpectedCall
0002 
0003 FILE:#: EXPECT_CALL(foo_, Bar2(0, _)) invoked
0004 Stack trace:
0005 
0006 FILE:#: Mock function call matches EXPECT_CALL(foo_, Bar2(0, _))...
0007     Function call: Bar2(0, 0)
0008           Returns: false
0009 Stack trace:
0010 [       OK ] GMockOutputTest.ExpectedCall
0011 [ RUN      ] GMockOutputTest.ExpectedCallToVoidFunction
0012 
0013 FILE:#: EXPECT_CALL(foo_, Bar3(0, _)) invoked
0014 Stack trace:
0015 
0016 FILE:#: Mock function call matches EXPECT_CALL(foo_, Bar3(0, _))...
0017     Function call: Bar3(0, 0)
0018 Stack trace:
0019 [       OK ] GMockOutputTest.ExpectedCallToVoidFunction
0020 [ RUN      ] GMockOutputTest.ExplicitActionsRunOut
0021 
0022 GMOCK WARNING:
0023 FILE:#: Too few actions specified in EXPECT_CALL(foo_, Bar2(_, _))...
0024 Expected to be called twice, but has only 1 WillOnce().
0025 GMOCK WARNING:
0026 FILE:#: Actions ran out in EXPECT_CALL(foo_, Bar2(_, _))...
0027 Called 2 times, but only 1 WillOnce() is specified - returning default value.
0028 Stack trace:
0029 [       OK ] GMockOutputTest.ExplicitActionsRunOut
0030 [ RUN      ] GMockOutputTest.UnexpectedCall
0031 unknown file: Failure
0032 
0033 Unexpected mock function call - returning default value.
0034     Function call: Bar2(1, 0)
0035           Returns: false
0036 Google Mock tried the following 1 expectation, but it didn't match:
0037 
0038 FILE:#: EXPECT_CALL(foo_, Bar2(0, _))...
0039   Expected arg #0: is equal to 0
0040            Actual: 1
0041          Expected: to be called once
0042            Actual: never called - unsatisfied and active
0043 [  FAILED  ] GMockOutputTest.UnexpectedCall
0044 [ RUN      ] GMockOutputTest.UnexpectedCallToVoidFunction
0045 unknown file: Failure
0046 
0047 Unexpected mock function call - returning directly.
0048     Function call: Bar3(1, 0)
0049 Google Mock tried the following 1 expectation, but it didn't match:
0050 
0051 FILE:#: EXPECT_CALL(foo_, Bar3(0, _))...
0052   Expected arg #0: is equal to 0
0053            Actual: 1
0054          Expected: to be called once
0055            Actual: never called - unsatisfied and active
0056 [  FAILED  ] GMockOutputTest.UnexpectedCallToVoidFunction
0057 [ RUN      ] GMockOutputTest.ExcessiveCall
0058 FILE:#: Failure
0059 Mock function called more times than expected - returning default value.
0060     Function call: Bar2(0, 1)
0061           Returns: false
0062          Expected: to be called once
0063            Actual: called twice - over-saturated and active
0064 [  FAILED  ] GMockOutputTest.ExcessiveCall
0065 [ RUN      ] GMockOutputTest.ExcessiveCallToVoidFunction
0066 FILE:#: Failure
0067 Mock function called more times than expected - returning directly.
0068     Function call: Bar3(0, 1)
0069          Expected: to be called once
0070            Actual: called twice - over-saturated and active
0071 [  FAILED  ] GMockOutputTest.ExcessiveCallToVoidFunction
0072 [ RUN      ] GMockOutputTest.UninterestingCall
0073 
0074 GMOCK WARNING:
0075 Uninteresting mock function call - returning default value.
0076     Function call: Bar2(0, 1)
0077           Returns: false
0078 NOTE: You can safely ignore the above warning unless this call should not happen.  Do not suppress it by blindly adding an EXPECT_CALL() if you don't mean to enforce the call.  See https://github.com/google/googletest/blob/master/googlemock/docs/CookBook.md#knowing-when-to-expect for details.
0079 [       OK ] GMockOutputTest.UninterestingCall
0080 [ RUN      ] GMockOutputTest.UninterestingCallToVoidFunction
0081 
0082 GMOCK WARNING:
0083 Uninteresting mock function call - returning directly.
0084     Function call: Bar3(0, 1)
0085 NOTE: You can safely ignore the above warning unless this call should not happen.  Do not suppress it by blindly adding an EXPECT_CALL() if you don't mean to enforce the call.  See https://github.com/google/googletest/blob/master/googlemock/docs/CookBook.md#knowing-when-to-expect for details.
0086 [       OK ] GMockOutputTest.UninterestingCallToVoidFunction
0087 [ RUN      ] GMockOutputTest.RetiredExpectation
0088 unknown file: Failure
0089 
0090 Unexpected mock function call - returning default value.
0091     Function call: Bar2(1, 1)
0092           Returns: false
0093 Google Mock tried the following 2 expectations, but none matched:
0094 
0095 FILE:#: tried expectation #0: EXPECT_CALL(foo_, Bar2(_, _))...
0096          Expected: the expectation is active
0097            Actual: it is retired
0098          Expected: to be called once
0099            Actual: called once - saturated and retired
0100 FILE:#: tried expectation #1: EXPECT_CALL(foo_, Bar2(0, 0))...
0101   Expected arg #0: is equal to 0
0102            Actual: 1
0103   Expected arg #1: is equal to 0
0104            Actual: 1
0105          Expected: to be called once
0106            Actual: never called - unsatisfied and active
0107 [  FAILED  ] GMockOutputTest.RetiredExpectation
0108 [ RUN      ] GMockOutputTest.UnsatisfiedPrerequisite
0109 unknown file: Failure
0110 
0111 Unexpected mock function call - returning default value.
0112     Function call: Bar2(1, 0)
0113           Returns: false
0114 Google Mock tried the following 2 expectations, but none matched:
0115 
0116 FILE:#: tried expectation #0: EXPECT_CALL(foo_, Bar2(0, 0))...
0117   Expected arg #0: is equal to 0
0118            Actual: 1
0119          Expected: to be called once
0120            Actual: never called - unsatisfied and active
0121 FILE:#: tried expectation #1: EXPECT_CALL(foo_, Bar2(1, _))...
0122          Expected: all pre-requisites are satisfied
0123            Actual: the following immediate pre-requisites are not satisfied:
0124 FILE:#: pre-requisite #0
0125                    (end of pre-requisites)
0126          Expected: to be called once
0127            Actual: never called - unsatisfied and active
0128 [  FAILED  ] GMockOutputTest.UnsatisfiedPrerequisite
0129 [ RUN      ] GMockOutputTest.UnsatisfiedPrerequisites
0130 unknown file: Failure
0131 
0132 Unexpected mock function call - returning default value.
0133     Function call: Bar2(1, 0)
0134           Returns: false
0135 Google Mock tried the following 2 expectations, but none matched:
0136 
0137 FILE:#: tried expectation #0: EXPECT_CALL(foo_, Bar2(0, 0))...
0138   Expected arg #0: is equal to 0
0139            Actual: 1
0140          Expected: to be called once
0141            Actual: never called - unsatisfied and active
0142 FILE:#: tried expectation #1: EXPECT_CALL(foo_, Bar2(1, _))...
0143          Expected: all pre-requisites are satisfied
0144            Actual: the following immediate pre-requisites are not satisfied:
0145 FILE:#: pre-requisite #0
0146 FILE:#: pre-requisite #1
0147                    (end of pre-requisites)
0148          Expected: to be called once
0149            Actual: never called - unsatisfied and active
0150 [  FAILED  ] GMockOutputTest.UnsatisfiedPrerequisites
0151 [ RUN      ] GMockOutputTest.UnsatisfiedWith
0152 FILE:#: Failure
0153 Actual function call count doesn't match EXPECT_CALL(foo_, Bar2(_, _))...
0154     Expected args: are a pair where the first >= the second
0155          Expected: to be called once
0156            Actual: never called - unsatisfied and active
0157 [  FAILED  ] GMockOutputTest.UnsatisfiedWith
0158 [ RUN      ] GMockOutputTest.UnsatisfiedExpectation
0159 FILE:#: Failure
0160 Actual function call count doesn't match EXPECT_CALL(foo_, Bar2(0, _))...
0161          Expected: to be called twice
0162            Actual: called once - unsatisfied and active
0163 FILE:#: Failure
0164 Actual function call count doesn't match EXPECT_CALL(foo_, Bar(_, _, _))...
0165          Expected: to be called once
0166            Actual: never called - unsatisfied and active
0167 [  FAILED  ] GMockOutputTest.UnsatisfiedExpectation
0168 [ RUN      ] GMockOutputTest.MismatchArguments
0169 unknown file: Failure
0170 
0171 Unexpected mock function call - returning default value.
0172     Function call: Bar(@0x# "Ho", 0, -0.1)
0173           Returns: '\0'
0174 Google Mock tried the following 1 expectation, but it didn't match:
0175 
0176 FILE:#: EXPECT_CALL(foo_, Bar(Ref(s), _, Ge(0)))...
0177   Expected arg #0: references the variable @0x# "Hi"
0178            Actual: "Ho", which is located @0x#
0179   Expected arg #2: is >= 0
0180            Actual: -0.1
0181          Expected: to be called once
0182            Actual: never called - unsatisfied and active
0183 [  FAILED  ] GMockOutputTest.MismatchArguments
0184 [ RUN      ] GMockOutputTest.MismatchWith
0185 unknown file: Failure
0186 
0187 Unexpected mock function call - returning default value.
0188     Function call: Bar2(2, 3)
0189           Returns: false
0190 Google Mock tried the following 1 expectation, but it didn't match:
0191 
0192 FILE:#: EXPECT_CALL(foo_, Bar2(Ge(2), Ge(1)))...
0193     Expected args: are a pair where the first >= the second
0194            Actual: don't match
0195          Expected: to be called once
0196            Actual: never called - unsatisfied and active
0197 [  FAILED  ] GMockOutputTest.MismatchWith
0198 [ RUN      ] GMockOutputTest.MismatchArgumentsAndWith
0199 unknown file: Failure
0200 
0201 Unexpected mock function call - returning default value.
0202     Function call: Bar2(1, 3)
0203           Returns: false
0204 Google Mock tried the following 1 expectation, but it didn't match:
0205 
0206 FILE:#: EXPECT_CALL(foo_, Bar2(Ge(2), Ge(1)))...
0207   Expected arg #0: is >= 2
0208            Actual: 1
0209     Expected args: are a pair where the first >= the second
0210            Actual: don't match
0211          Expected: to be called once
0212            Actual: never called - unsatisfied and active
0213 [  FAILED  ] GMockOutputTest.MismatchArgumentsAndWith
0214 [ RUN      ] GMockOutputTest.UnexpectedCallWithDefaultAction
0215 unknown file: Failure
0216 
0217 Unexpected mock function call - taking default action specified at:
0218 FILE:#:
0219     Function call: Bar2(1, 0)
0220           Returns: false
0221 Google Mock tried the following 1 expectation, but it didn't match:
0222 
0223 FILE:#: EXPECT_CALL(foo_, Bar2(2, 2))...
0224   Expected arg #0: is equal to 2
0225            Actual: 1
0226   Expected arg #1: is equal to 2
0227            Actual: 0
0228          Expected: to be called once
0229            Actual: never called - unsatisfied and active
0230 unknown file: Failure
0231 
0232 Unexpected mock function call - taking default action specified at:
0233 FILE:#:
0234     Function call: Bar2(0, 0)
0235           Returns: true
0236 Google Mock tried the following 1 expectation, but it didn't match:
0237 
0238 FILE:#: EXPECT_CALL(foo_, Bar2(2, 2))...
0239   Expected arg #0: is equal to 2
0240            Actual: 0
0241   Expected arg #1: is equal to 2
0242            Actual: 0
0243          Expected: to be called once
0244            Actual: never called - unsatisfied and active
0245 [  FAILED  ] GMockOutputTest.UnexpectedCallWithDefaultAction
0246 [ RUN      ] GMockOutputTest.ExcessiveCallWithDefaultAction
0247 FILE:#: Failure
0248 Mock function called more times than expected - taking default action specified at:
0249 FILE:#:
0250     Function call: Bar2(2, 2)
0251           Returns: true
0252          Expected: to be called once
0253            Actual: called twice - over-saturated and active
0254 FILE:#: Failure
0255 Mock function called more times than expected - taking default action specified at:
0256 FILE:#:
0257     Function call: Bar2(1, 1)
0258           Returns: false
0259          Expected: to be called once
0260            Actual: called twice - over-saturated and active
0261 [  FAILED  ] GMockOutputTest.ExcessiveCallWithDefaultAction
0262 [ RUN      ] GMockOutputTest.UninterestingCallWithDefaultAction
0263 
0264 GMOCK WARNING:
0265 Uninteresting mock function call - taking default action specified at:
0266 FILE:#:
0267     Function call: Bar2(2, 2)
0268           Returns: true
0269 NOTE: You can safely ignore the above warning unless this call should not happen.  Do not suppress it by blindly adding an EXPECT_CALL() if you don't mean to enforce the call.  See https://github.com/google/googletest/blob/master/googlemock/docs/CookBook.md#knowing-when-to-expect for details.
0270 
0271 GMOCK WARNING:
0272 Uninteresting mock function call - taking default action specified at:
0273 FILE:#:
0274     Function call: Bar2(1, 1)
0275           Returns: false
0276 NOTE: You can safely ignore the above warning unless this call should not happen.  Do not suppress it by blindly adding an EXPECT_CALL() if you don't mean to enforce the call.  See https://github.com/google/googletest/blob/master/googlemock/docs/CookBook.md#knowing-when-to-expect for details.
0277 [       OK ] GMockOutputTest.UninterestingCallWithDefaultAction
0278 [ RUN      ] GMockOutputTest.ExplicitActionsRunOutWithDefaultAction
0279 
0280 GMOCK WARNING:
0281 FILE:#: Too few actions specified in EXPECT_CALL(foo_, Bar2(_, _))...
0282 Expected to be called twice, but has only 1 WillOnce().
0283 GMOCK WARNING:
0284 FILE:#: Actions ran out in EXPECT_CALL(foo_, Bar2(_, _))...
0285 Called 2 times, but only 1 WillOnce() is specified - taking default action specified at:
0286 FILE:#:
0287 Stack trace:
0288 [       OK ] GMockOutputTest.ExplicitActionsRunOutWithDefaultAction
0289 [ RUN      ] GMockOutputTest.CatchesLeakedMocks
0290 [       OK ] GMockOutputTest.CatchesLeakedMocks
0291 [  FAILED  ] GMockOutputTest.UnexpectedCall
0292 [  FAILED  ] GMockOutputTest.UnexpectedCallToVoidFunction
0293 [  FAILED  ] GMockOutputTest.ExcessiveCall
0294 [  FAILED  ] GMockOutputTest.ExcessiveCallToVoidFunction
0295 [  FAILED  ] GMockOutputTest.RetiredExpectation
0296 [  FAILED  ] GMockOutputTest.UnsatisfiedPrerequisite
0297 [  FAILED  ] GMockOutputTest.UnsatisfiedPrerequisites
0298 [  FAILED  ] GMockOutputTest.UnsatisfiedWith
0299 [  FAILED  ] GMockOutputTest.UnsatisfiedExpectation
0300 [  FAILED  ] GMockOutputTest.MismatchArguments
0301 [  FAILED  ] GMockOutputTest.MismatchWith
0302 [  FAILED  ] GMockOutputTest.MismatchArgumentsAndWith
0303 [  FAILED  ] GMockOutputTest.UnexpectedCallWithDefaultAction
0304 [  FAILED  ] GMockOutputTest.ExcessiveCallWithDefaultAction
0305 
0306 
0307 FILE:#: ERROR: this mock object should be deleted but never is. Its address is @0x#.
0308 FILE:#: ERROR: this mock object should be deleted but never is. Its address is @0x#.
0309 FILE:#: ERROR: this mock object should be deleted but never is. Its address is @0x#.
0310 ERROR: 3 leaked mock objects found at program exit.