spiegel-keyman/mac/Keyman4MacIM/KeymanTests/NoContextTestClient.m
Tom Bogle 26ad29a744 [Mac] Added lots of IM tests (legacy, no-context, Apple-compliant [WIP])
Fixes #1005 (at least in part). Still one failing test.
2018-06-25 17:15:00 -04:00

22 lines
495 B
Objective-C

//
// NoContextTestClient.m
// KeymanTests
//
// Created by tom on 6/25/18.
// Copyright © 2018 SIL International. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "NoContextTestClient.h"
@implementation NoContextTestClient
- (void)insertText:(id)string replacementRange:(NSRange)replacementRange {
[super insertTextProtected: string replacementRange:replacementRange];
}
- (NSAttributedString*)attributedSubstringFromRange:(NSRange)range {
return nil;
}
@end