mirror of
https://github.com/Instagram/IGListKit
synced 2026-05-06 15:08:50 +00:00
Summary: Lets test that the new updater (`IGListExperimentalAdapterUpdater`) can handle a missing section-controller. The old adapater `IGListAdapterUpdater` would crash. Reviewed By: patters Differential Revision: D23145773 fbshipit-source-id: 4589dcb11ddef5c7400947aea4b6827f1b2caaa8
25 lines
644 B
Objective-C
25 lines
644 B
Objective-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 IGTestDelegateController;
|
|
@class IGTestObject;
|
|
|
|
extern NSObject *const kIGTestDelegateDataSourceSkipObject;
|
|
|
|
@interface IGTestDelegateDataSource : NSObject <IGListTestCaseDataSource>
|
|
|
|
@property (nonatomic, copy) NSArray <IGTestObject *> *objects;
|
|
|
|
@property (nonatomic, copy) void (^cellConfigureBlock)(IGTestDelegateController *);
|
|
|
|
@end
|