mirror of
https://github.com/Instagram/IGListKit
synced 2026-05-22 16:58:23 +00:00
26 lines
653 B
C
26 lines
653 B
C
|
|
/**
|
||
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
||
|
|
* All rights reserved.
|
||
|
|
*
|
||
|
|
* This source code is licensed under the BSD-style license found in the
|
||
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
||
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
||
|
|
*/
|
||
|
|
|
||
|
|
#import <Foundation/Foundation.h>
|
||
|
|
|
||
|
|
#import <IGListKit/IGListAdapterDataSource.h>
|
||
|
|
|
||
|
|
#import "IGTestObject.h"
|
||
|
|
#import "IGListTestCase.h"
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface IGTestBindingSingleItemDataSource : NSObject <IGListTestCaseDataSource>
|
||
|
|
|
||
|
|
@property (nonatomic, strong) NSArray<IGTestObject *> *objects;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|