required libs:
* ZipArchive - Obj-C impl of zip
* asi-http-request : http request help to assist with asynchoronous downloading of files
* minizip : support for ZipArchive
*
Added default splash screen for iOS app. (using the Wagic background to keep it neutral to module)
TODO: refine handling for iPad splash screen
* add selection screen and input screen for location of downloadable content. (ie core files, image files, etc )
* add support to opt out of backing up to iCloud for core files. Right now iOS will automatically backup all files under Documents folder to iCloud. Consider only allowing player data to be backed up to iCloud. All graphics and other assets are considered volatile.
29 lines
615 B
Objective-C
29 lines
615 B
Objective-C
//
|
|
// ASIS3RequestTests.h
|
|
// Part of ASIHTTPRequest -> http://allseeing-i.com/ASIHTTPRequest
|
|
//
|
|
// Created by Ben Copsey on 12/07/2009.
|
|
// Copyright 2009 All-Seeing Interactive. All rights reserved.
|
|
//
|
|
|
|
#import "ASITestCase.h"
|
|
|
|
@class ASINetworkQueue;
|
|
|
|
@interface ASIS3RequestTests : ASITestCase {
|
|
ASINetworkQueue *networkQueue;
|
|
float progress;
|
|
}
|
|
|
|
- (void)testAuthenticationHeaderGeneration;
|
|
- (void)testREST;
|
|
- (void)testFailure;
|
|
- (void)testListRequest;
|
|
- (void)testSubclasses;
|
|
- (void)createTestBucket;
|
|
- (void)testCopy;
|
|
- (void)testHTTPS;
|
|
|
|
@property (retain,nonatomic) ASINetworkQueue *networkQueue;
|
|
@end
|