Searched refs:imethodsMock (Results 1 – 1 of 1) sorted by relevance
38 @Mock(serializable=true) IMethods imethodsMock; field in MocksSerializationForAnnotationTest56 serializeAndBack(imethodsMock); in should_allow_mock_to_be_serializable()62 when(imethodsMock.booleanReturningMethod()).thenReturn(true); in should_allow_mock_and_boolean_value_to_serializable()65 ByteArrayOutputStream serialized = serializeMock(imethodsMock); in should_allow_mock_and_boolean_value_to_serializable()76 when(imethodsMock.stringReturningMethod()).thenReturn(value); in should_allow_mock_and_string_value_to_be_serializable()79 ByteArrayOutputStream serialized = serializeMock(imethodsMock); in should_allow_mock_and_string_value_to_be_serializable()90 when(imethodsMock.objectReturningMethodNoArgs()).thenReturn(value); in should_all_mock_and_serializable_value_to_be_serialized()93 ByteArrayOutputStream serialized = serializeMock(imethodsMock); in should_all_mock_and_serializable_value_to_be_serialized()103 when(imethodsMock.objectArgMethod(value)).thenReturn(value); in should_serialize_method_call_with_parameters_that_are_serializable()106 ByteArrayOutputStream serialized = serializeMock(imethodsMock); in should_serialize_method_call_with_parameters_that_are_serializable()[all …]