Overview
| Comment: | tests: Class and category name consistency |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
ea500c31be1bca1d49a3aaaa5ebb0efc |
| User & Date: | js on 2015-01-20 19:38:01 |
| Other Links: | manifest | tags |
Context
|
2015-01-29
| ||
| 20:58 | -[OFString lastPathComponent]: Return @"" for / (check-in: 775d6b52a5 user: js tags: trunk) | |
|
2015-01-20
| ||
| 19:38 | tests: Class and category name consistency (check-in: ea500c31be user: js tags: trunk) | |
|
2015-01-19
| ||
| 22:44 | OFKernelEventObserver_select: Check range of fd (check-in: 3cd42fa72d user: js tags: trunk) | |
Changes
Modified tests/OFHTTPClientTests.m from [65aec61587] to [08ace1af61].
| ︙ | ︙ | |||
31 32 33 34 35 36 37 | #import "OFAutoreleasePool.h" #import "TestsAppDelegate.h" static OFString *module = @"OFHTTPClient"; static OFCondition *cond; | | | | 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
#import "OFAutoreleasePool.h"
#import "TestsAppDelegate.h"
static OFString *module = @"OFHTTPClient";
static OFCondition *cond;
@interface HTTPClientTestsServer: OFThread
{
@public
uint16_t _port;
}
@end
@implementation HTTPClientTestsServer
- main
{
OFTCPSocket *listener, *client;
[cond lock];
listener = [OFTCPSocket socket];
|
| ︙ | ︙ | |||
79 80 81 82 83 84 85 | @"bar"]; [client close]; return nil; } @end | | | | | 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 |
@"bar"];
[client close];
return nil;
}
@end
@implementation TestsAppDelegate (OFHTTPClientTests)
- (void)HTTPClientTests
{
OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init];
HTTPClientTestsServer *server;
OFURL *url;
OFHTTPClient *client;
OFHTTPRequest *request;
OFHTTPResponse *response = nil;
OFDataArray *data;
cond = [OFCondition condition];
[cond lock];
server = [[[HTTPClientTestsServer alloc] init] autorelease];
[server start];
[cond wait];
[cond unlock];
url = [OFURL URLWithString:
[OFString stringWithFormat: @"http://127.0.0.1:%" @PRIu16 "/foo",
|
| ︙ | ︙ |
Modified tests/OFSerializationTests.m from [55f25ef8d3] to [891c3f9d8b].
| ︙ | ︙ | |||
30 31 32 33 34 35 36 | #import "OFAutoreleasePool.h" #import "OFXMLElement.h" #import "TestsAppDelegate.h" static OFString *module = @"OFSerialization"; | | | 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
#import "OFAutoreleasePool.h"
#import "OFXMLElement.h"
#import "TestsAppDelegate.h"
static OFString *module = @"OFSerialization";
@implementation TestsAppDelegate (OFSerializationTests)
- (void)serializationTests
{
OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init];
OFMutableDictionary *d = [OFMutableDictionary dictionary];
OFMutableArray *a = [OFMutableArray array];
OFList *l = [OFList list];
OFDataArray *da = [OFDataArray dataArray];
|
| ︙ | ︙ |
Modified tests/TestsAppDelegate.h from [fffc9296e0] to [b160a0aca4].
| ︙ | ︙ | |||
132 133 134 135 136 137 138 | - (void)propertiesTests; @end @interface TestsAppDelegate (OFRIPEMD160HashTests) - (void)RIPEMD160HashTests; @end | | | 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 | - (void)propertiesTests; @end @interface TestsAppDelegate (OFRIPEMD160HashTests) - (void)RIPEMD160HashTests; @end @interface TestsAppDelegate (OFSerializationTests) - (void)serializationTests; @end @interface TestsAppDelegate (OFSetTests) - (void)setTests; @end |
| ︙ | ︙ |