Retired Document
Important: This document may not represent best practices for current development. Links to downloads and other resources may no longer be valid.
KeychainTouchID/AAPLTest.m
/* |
Copyright (C) 2016 Apple Inc. All Rights Reserved. |
See LICENSE.txt for this sample’s licensing information |
Abstract: |
Test instance which holds the test name details and the selector which should be invoked to perform the test. |
*/ |
#import "AAPLTest.h" |
@implementation AAPLTest |
- (instancetype)initWithName:(NSString *)name details:(NSString *)details selector:(SEL)method { |
self = [super init]; |
if (self) { |
_name = [name copy]; |
_details = [details copy]; |
_method = method; |
} |
return self; |
} |
@end |
Copyright © 2018 Apple Inc. All Rights Reserved. Terms of Use | Privacy Policy | Updated: 2018-06-04