2019-12-19 17:32:49 +00:00
|
|
|
/*
|
2023-04-06 09:44:16 +00:00
|
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
2016-09-07 22:37:59 +00:00
|
|
|
*
|
2019-12-19 17:32:49 +00:00
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2016-09-07 22:37:59 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
|
|
|
|
|
#import <IGListKit/IGListAdapterDataSource.h>
|
|
|
|
|
|
2017-04-20 21:35:26 +00:00
|
|
|
#import "IGListTestCase.h"
|
|
|
|
|
|
2016-09-07 22:37:59 +00:00
|
|
|
@class IGTestDelegateController;
|
2019-12-19 17:32:49 +00:00
|
|
|
@class IGTestObject;
|
2016-09-07 22:37:59 +00:00
|
|
|
|
2020-09-08 16:06:16 +00:00
|
|
|
extern NSObject *const kIGTestDelegateDataSourceSkipObject;
|
|
|
|
|
|
2017-04-20 21:35:26 +00:00
|
|
|
@interface IGTestDelegateDataSource : NSObject <IGListTestCaseDataSource>
|
2016-09-07 22:37:59 +00:00
|
|
|
|
2019-12-19 17:32:49 +00:00
|
|
|
@property (nonatomic, copy) NSArray <IGTestObject *> *objects;
|
2016-09-07 22:37:59 +00:00
|
|
|
|
|
|
|
|
@property (nonatomic, copy) void (^cellConfigureBlock)(IGTestDelegateController *);
|
|
|
|
|
|
|
|
|
|
@end
|