mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-24 14:31:48 +00:00
18 lines
366 B
Objective-C
18 lines
366 B
Objective-C
//
|
|
// OCMockito - MKTBaseMockObject.h
|
|
// Copyright 2013 Jonathan M. Reid. See LICENSE.txt
|
|
//
|
|
// Created by: Jon Reid, http://qualitycoding.org/
|
|
// Source: https://github.com/jonreid/OCMockito
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "MKTPrimitiveArgumentMatching.h"
|
|
|
|
|
|
@interface MKTBaseMockObject : NSProxy <MKTPrimitiveArgumentMatching>
|
|
|
|
- (id)init;
|
|
|
|
@end
|