AFNetworking/Tests/AFNetworkingTests.m
Blake Watters 4f04b35378 Reorganize testing setup
* Eliminate static library and framework targets
* Migrate all testing infrastructure and code to Tests/
* Nest CocoaPods setup for testing under Tests/
* Remove explicit dependencies from shared schemes
2013-05-11 13:18:43 -04:00

14 lines
325 B
Objective-C

//
// AFNetworkingTests.m
// AFNetworking
//
// Created by Blake Watters on 5/10/13.
// Copyright (c) 2013 AFNetworking. All rights reserved.
//
NSString *AFNetworkingTestsBaseURLString = @"http://httpbin.org/";
NSURL *AFNetworkingTestsBaseURL(void)
{
return [NSURL URLWithString:AFNetworkingTestsBaseURLString];
}