mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-08 08:31:13 +00:00
21 lines
488 B
Objective-C
21 lines
488 B
Objective-C
//
|
|
// OCMockito - MKTObjectAndProtocolMock.h
|
|
// Copyright 2013 Jonathan M. Reid. See LICENSE.txt
|
|
//
|
|
// Created by: Kevin Lundberg
|
|
// Source: https://github.com/jonreid/OCMockito
|
|
//
|
|
|
|
#import "MKTProtocolMock.h"
|
|
|
|
|
|
/**
|
|
Mock object of a given class that also implements a given protocol.
|
|
*/
|
|
@interface MKTObjectAndProtocolMock : MKTProtocolMock
|
|
|
|
+ (id)mockForClass:(Class)aClass protocol:(Protocol *)protocol;
|
|
- (id)initWithClass:(Class)aClass protocol:(Protocol *)protocol;
|
|
|
|
@end
|