aboutsummaryrefslogtreecommitdiffstats
path: root/Frameworks/PostgresKit/Tests/PGDataTypeTests.h
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2013-05-21 21:57:57 +0000
committerstuconnolly <stuart02@gmail.com>2013-05-21 21:57:57 +0000
commit9432986de1d25527b133715ab12a8dffc2c5f6b6 (patch)
tree1297927fb1124cf5ee96c6577db504f0386ff489 /Frameworks/PostgresKit/Tests/PGDataTypeTests.h
parent4631fedc1bd61dcf7a51970ffdbf4a62d3319c8a (diff)
downloadsequelpro-9432986de1d25527b133715ab12a8dffc2c5f6b6.tar.gz
sequelpro-9432986de1d25527b133715ab12a8dffc2c5f6b6.tar.bz2
sequelpro-9432986de1d25527b133715ab12a8dffc2c5f6b6.zip
PostgresKit: Add a common integration test case base.
Diffstat (limited to 'Frameworks/PostgresKit/Tests/PGDataTypeTests.h')
-rw-r--r--Frameworks/PostgresKit/Tests/PGDataTypeTests.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/Frameworks/PostgresKit/Tests/PGDataTypeTests.h b/Frameworks/PostgresKit/Tests/PGDataTypeTests.h
index 4d0debe1..bd1bd4a2 100644
--- a/Frameworks/PostgresKit/Tests/PGDataTypeTests.h
+++ b/Frameworks/PostgresKit/Tests/PGDataTypeTests.h
@@ -31,14 +31,14 @@
#import <PostgresKit/PostgresKit.h>
#import <SenTestingKit/SenTestingKit.h>
-@interface PGDataTypeTests : SenTestCase
+#import "PGPostgresIntegrationTestCase.h"
+
+@interface PGDataTypeTests : PGPostgresIntegrationTestCase
{
id _result;
id _expectedResult;
- NSString *_field;
-
- PGPostgresConnection *_connection;
+ NSString *_field;
}
@property (readwrite, retain) id result;
@@ -47,8 +47,6 @@
@property (readwrite, retain) NSString *field;
-@property (readwrite, retain) PGPostgresConnection *connection;
-
- (id)initWithInvocation:(NSInvocation *)invocation
connection:(PGPostgresConnection *)connection
expectedResult:(id)result