mirror of
https://github.com/Instagram/IGListKit
synced 2026-05-17 06:18:32 +00:00
21 lines
507 B
C
21 lines
507 B
C
|
|
/**
|
||
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
||
|
|
*
|
||
|
|
* This source code is licensed under the MIT license found in the
|
||
|
|
* LICENSE file in the root directory of this source tree.
|
||
|
|
*/
|
||
|
|
|
||
|
|
#import <Foundation/Foundation.h>
|
||
|
|
|
||
|
|
#import <IGListKit/IGListAdapterDataSource.h>
|
||
|
|
|
||
|
|
#import "IGListTestCase.h"
|
||
|
|
|
||
|
|
@class IGTestInvalidateLayoutObject;
|
||
|
|
|
||
|
|
@interface IGTestInvalidateLayoutDataSource : NSObject <IGListTestCaseDataSource>
|
||
|
|
|
||
|
|
@property (nonatomic, strong) NSArray<IGTestInvalidateLayoutObject *> *objects;
|
||
|
|
|
||
|
|
@end
|