blob: 8b508dac5c1220ea0f5abddedbe317084e403067 [file] [log] [blame]
//
// Copyright 2018 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
#import <Foundation/Foundation.h>
/** The protocol with nothing but only for testing. */
@protocol EDOTestProtocol
- (void)methodWithNothing;
- (void)methodWithObject:(id)object;
- (id)returnWithNothing;
- (id)returnWithObject:(id)object;
@end
/** The helper class to create a protocol mock in the other service. */
@interface EDOProtocolMockTestHelper : NSObject
/** Create a mock that mocks @c EDOTestProtocol. */
+ (id<EDOTestProtocol>)createTestProtocol;
/** Invoke the methods defined in the protocol. */
+ (void)invokeMethodsWithProtocol:(id<EDOTestProtocol>)protocol;
@end