tableView を使用する単体テストを作成しようとしていますが、セルにアクセスできません。
これは常に nil です:
- (void)testDidEndEditingUpdatesLiftRecords {
TextViewCell *cell = (TextViewCell *) [tableView cellForRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0]];
セットアップでデータソースを設定したにもかかわらず
- (void)setUp {
[super setUp];
source = [[MyDataSource alloc] init];
tableView = [[UITableView alloc] init];
[tableView setDataSource:source];
何があり得るか