From: Neil T. <nt...@us...> - 2006-08-30 15:48:51
|
Update of /cvsroot/pgsqlformac/pgCocoaDB/UnitTest In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21466/UnitTest Modified Files: pgCocoaDBSchemaTest.h pgCocoaDBSchemaTest.m Log Message: Restructure for schema threaded processing. Index: pgCocoaDBSchemaTest.m =================================================================== RCS file: /cvsroot/pgsqlformac/pgCocoaDB/UnitTest/pgCocoaDBSchemaTest.m,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** pgCocoaDBSchemaTest.m 26 Aug 2006 12:25:33 -0000 1.15 --- pgCocoaDBSchemaTest.m 30 Aug 2006 15:48:49 -0000 1.16 *************** *** 21,25 **** NSString* const PGCocoaTestPassword = @""; NSString* const PGCocoaTestHost = @"localhost"; ! NSString* const PGCocoaTestPort = @"5433"; // Uncomment the following line to automatically drop and recreate the test database. --- 21,25 ---- NSString* const PGCocoaTestPassword = @""; NSString* const PGCocoaTestHost = @"localhost"; ! NSString* const PGCocoaTestPort = @"5432"; // Uncomment the following line to automatically drop and recreate the test database. *************** *** 968,972 **** { ExplorerModel *explorer = [[ExplorerModel alloc] initWithConnection:conn]; ! [explorer buildSchema]; [explorer printLog]; --- 968,972 ---- { ExplorerModel *explorer = [[ExplorerModel alloc] initWithConnection:conn]; ! [explorer buildSchema:nil]; [explorer printLog]; Index: pgCocoaDBSchemaTest.h =================================================================== RCS file: /cvsroot/pgsqlformac/pgCocoaDB/UnitTest/pgCocoaDBSchemaTest.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** pgCocoaDBSchemaTest.h 6 Mar 2006 00:59:00 -0000 1.2 --- pgCocoaDBSchemaTest.h 30 Aug 2006 15:48:49 -0000 1.3 *************** *** 10,13 **** --- 10,14 ---- #import "Connection.h" #import "Schema.h" + #import "PGCocoaDB.h" @interface pgCocoaDBSchemaTest : SenTestCase { |