spiegel-keyman/mac/Keyman4MacIM/KeymanTests/AppleCompliantTestClient.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

18 lines
439 B
Objective-C

//
// AppleCompliantTestClient.m
// KeymanTests
//
// Created by tom on 6/25/18.
// Copyright © 2018 SIL International. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "AppleCompliantTestClient.h"
@implementation AppleCompliantTestClient
- (NSAttributedString*)attributedSubstringFromRange:(NSRange)range {
return [[NSAttributedString alloc] initWithString:[super substringFromRangeProtected:range]];
}
@end