aboutsummaryrefslogtreecommitdiffstats
path: root/UnitTests
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2009-07-21 16:47:11 +0000
committerstuconnolly <stuart02@gmail.com>2009-07-21 16:47:11 +0000
commit8b8f3e6cea540b17262aadf6d97a8ad28fe41c03 (patch)
treead6bb7f53b03924aa24d0cf5822a27b3bd453592 /UnitTests
parent383863f98dfc488db0181e01d39da1bb025d421b (diff)
downloadsequelpro-8b8f3e6cea540b17262aadf6d97a8ad28fe41c03.tar.gz
sequelpro-8b8f3e6cea540b17262aadf6d97a8ad28fe41c03.tar.bz2
sequelpro-8b8f3e6cea540b17262aadf6d97a8ad28fe41c03.zip
Merge framework integration branch back to trunk. Summary of changes:
- Includes all custom code from subclasses CMMCPConnection and CMMCPResult, meaning they have subsequently been removed from the project. - All previous Sequel Pro specific code in the above subclasses has been removed in favour of the delegate (currently set to TableDocumet) informing the framework of such information. - All references to CMMCPConnection and CMMCPResult have subsequently been changed to MCPConnection and MCPResult. - Framework includes MySQL 5.1.36 client libraries and source headers. - Framework is now built as a 4-way (32/64 bit, i386/PPC arch) binary. - All import references to <MCPKit_bundled/MCPKit_bundled.h> have been changed to <MCPKit/MCPKit.h>. - New script 'build-mysql-client.sh' can be used to build the MySQL client libraries from the MySQL source. See the script's header for a list of available options or run it with no arguments to display it's usage. Note that there are still a few changes to be made to the framework with regard to removing Sequel Pro specific calls to the delegate. These however can be made later on as they have no effect on functionality and are merely design changes. Also, note that any future development done on the framework should be made to be as 'generic' as possible, with no Sequel Pro specific references. This should allow the framework to be integrated into another project without the need for SP specific code.
Diffstat (limited to 'UnitTests')
-rw-r--r--UnitTests/mcpKitTest.h9
-rw-r--r--UnitTests/mcpKitTest.m5
-rw-r--r--UnitTests/stringCategoryAdditionsTest.h5
-rw-r--r--UnitTests/stringCategoryAdditionsTest.m1
4 files changed, 7 insertions, 13 deletions
diff --git a/UnitTests/mcpKitTest.h b/UnitTests/mcpKitTest.h
index f2cdea92..8e5fd508 100644
--- a/UnitTests/mcpKitTest.h
+++ b/UnitTests/mcpKitTest.h
@@ -23,12 +23,11 @@
//
#import <SenTestingKit/SenTestingKit.h>
-#import "CMMCPConnection.h"
-#import "CMMCPResult.h"
+#import <MCPKit/MCPKit.h>
-@interface mcpKitTest : SenTestCase {
-
- CMMCPConnection *mySQLConnection;
+@interface mcpKitTest : SenTestCase
+{
+ MCPConnection *mySQLConnection;
}
@end
diff --git a/UnitTests/mcpKitTest.m b/UnitTests/mcpKitTest.m
index 35385b9a..8af68c64 100644
--- a/UnitTests/mcpKitTest.m
+++ b/UnitTests/mcpKitTest.m
@@ -24,7 +24,6 @@
#import "mcpKitTest.h"
-
@implementation mcpKitTest
- (void)setUp
@@ -35,7 +34,7 @@
// set up a user called 'sakila' with no password that has all privs on the
// database 'sakila'
- mySQLConnection = [[CMMCPConnection alloc] initToSocket:@"/var/mysql/mysql.sock"
+ mySQLConnection = [[MCPConnection alloc] initToSocket:@"/var/mysql/mysql.sock"
withLogin:@"sakila"
password:@""];
@@ -75,7 +74,7 @@
if( mySQLConnection == nil )
return;
- CMMCPResult *theResult;
+ MCPResult *theResult;
NSString *pQuery = @"SELECT * FROM actor";
theResult = [mySQLConnection queryString:pQuery];
diff --git a/UnitTests/stringCategoryAdditionsTest.h b/UnitTests/stringCategoryAdditionsTest.h
index a89f78bb..2fc611be 100644
--- a/UnitTests/stringCategoryAdditionsTest.h
+++ b/UnitTests/stringCategoryAdditionsTest.h
@@ -24,9 +24,6 @@
#import <SenTestingKit/SenTestingKit.h>
-
-@interface stringCategoryAdditionsTest : SenTestCase {
-
-}
+@interface stringCategoryAdditionsTest : SenTestCase
@end
diff --git a/UnitTests/stringCategoryAdditionsTest.m b/UnitTests/stringCategoryAdditionsTest.m
index 68b27ff7..cff13ac9 100644
--- a/UnitTests/stringCategoryAdditionsTest.m
+++ b/UnitTests/stringCategoryAdditionsTest.m
@@ -22,7 +22,6 @@
// More info at <http://code.google.com/p/sequel-pro/>
//
-
#import "stringCategoryAdditionsTest.h"
#import "SPStringAdditions.h"