mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-24 06:21:55 +00:00
21 lines
391 B
Objective-C
21 lines
391 B
Objective-C
//
|
|
// OCMockito - MKTObjectMock.h
|
|
// Copyright 2013 Jonathan M. Reid. See LICENSE.txt
|
|
//
|
|
// Created by: Jon Reid, http://qualitycoding.org/
|
|
// Source: https://github.com/jonreid/OCMockito
|
|
//
|
|
|
|
#import "MKTBaseMockObject.h"
|
|
|
|
|
|
/**
|
|
Mock object of a given class.
|
|
*/
|
|
@interface MKTObjectMock : MKTBaseMockObject
|
|
|
|
+ (id)mockForClass:(Class)aClass;
|
|
- (id)initWithClass:(Class)aClass;
|
|
|
|
@end
|