mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-04-11 22:41:59 +08:00
58 lines
748 B
Objective-C
58 lines
748 B
Objective-C
//
|
|
// RKManagedObjectSeederTest.m
|
|
// RestKit
|
|
//
|
|
// Created by Blake Watters on 7/25/12.
|
|
// Copyright (c) 2012 RestKit. All rights reserved.
|
|
//
|
|
|
|
#import "RKTestEnvironment.h"
|
|
|
|
@interface RKManagedObjectSeederTest : RKTestCase
|
|
|
|
@end
|
|
|
|
@implementation RKManagedObjectSeederTest
|
|
|
|
- (void)testImportingAFile
|
|
{
|
|
|
|
}
|
|
|
|
- (void)testImportingADirectory
|
|
{
|
|
|
|
}
|
|
|
|
- (void)testImportingDirectoryReturnsCorrectAggregateObjectCount
|
|
{
|
|
|
|
}
|
|
|
|
- (void)testImportingAFileThatDoesNotExistReturnsError
|
|
{
|
|
|
|
}
|
|
|
|
- (void)testImportingAFileWithAnUnsupportedMIMEType
|
|
{
|
|
|
|
}
|
|
|
|
- (void)testImportingADirectoryContainingAnUnimportableFileReturnsError
|
|
{
|
|
|
|
}
|
|
|
|
- (void)testImportingWithMappingErrorsReturnsAnAggregateError
|
|
{
|
|
|
|
}
|
|
|
|
- (void)testFinishSeedingSavesManagedObjectContext
|
|
{
|
|
|
|
}
|
|
|
|
@end
|