Files
Tanner Bennett 3b5e095f74 Add some tests, fix some tests
- Test safeClassNameForObject:
- Test safeObject:respondsToSelector:
- Fix testAssumptionsAboutClasses: which was incorrectly written
2020-12-30 20:06:49 -06:00

20 lines
317 B
Objective-C

//
// FLEXNewRootClass.h
// FLEXTests
//
// Created by Tanner on 12/30/20.
// Copyright © 2020 Flipboard. All rights reserved.
//
#import <Foundation/Foundation.h>
/// Root class with one method
OBJC_ROOT_CLASS
@interface FLEXNewRootClass {
Class isa OBJC_ISA_AVAILABILITY;
}
- (void)theOnlyMethod;
@end