ASICloudFilesRequestTests.h
962 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//
// ASICloudFilesRequestTests.h
// iPhone
//
// Created by Michael Mayo on 1/6/10.
// Copyright 2010 __MyCompanyName__. All rights reserved.
//
#import "ASITestCase.h"
@class ASINetworkQueue;
@interface ASICloudFilesRequestTests : ASITestCase {
ASINetworkQueue *networkQueue;
float progress;
}
@property (retain,nonatomic) ASINetworkQueue *networkQueue;
// ASICloudFilesRequest
- (void)testAuthentication;
- (void)testDateParser;
// ASICloudFilesContainerRequest
- (void)testAccountInfo;
- (void)testContainerList; // TODO: with marker and limit permutations as well
- (void)testContainerCreate;
- (void)testContainerDelete;
// ASICloudFilesObjectRequest
- (void)testContainerInfo;
- (void)testObjectInfo;
- (void)testObjectList; // TODO: all permutations
- (void)testGetObject;
- (void)testPutObject; // TODO: all permutations?
- (void)testPostObject; // TODO: all permutations?
- (void)testDeleteObject;
// ASICloudFilesCDNRequest
// ???
@end