mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 00:02:28 +00:00
23 lines
383 B
Objective-C
23 lines
383 B
Objective-C
//
|
|
// KPKTestAutotypeNormalization.m
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 18.02.14.
|
|
// Copyright (c) 2014 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import <XCTest/XCTest.h>
|
|
#import "NSString+Commands.h"
|
|
|
|
@interface KPKTestAutotypeNormalization : XCTestCase
|
|
|
|
@end
|
|
|
|
@implementation KPKTestAutotypeNormalization
|
|
|
|
- (void)testNormalization {
|
|
@"Whoo {%}";
|
|
}
|
|
|
|
@end
|