From bc54b4bd56c757ec1279896b8b0639a4a9a7e0cd Mon Sep 17 00:00:00 2001 From: Constantin Michael Date: Wed, 4 May 2011 17:17:59 +0200 Subject: Add test infrastructure for libodb-pgsql --- pgsql/template/driver.cxx | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 pgsql/template/driver.cxx (limited to 'pgsql/template/driver.cxx') diff --git a/pgsql/template/driver.cxx b/pgsql/template/driver.cxx new file mode 100644 index 0000000..1ebb890 --- /dev/null +++ b/pgsql/template/driver.cxx @@ -0,0 +1,26 @@ +// file : pgsql/template/driver.cxx +// author : Constantin Michael +// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +// PLACE TEST DESCRIPTION HERE +// + +#include // std::auto_ptr +#include +#include + +using namespace std; + +int +main () +{ + try + { + cout << "test 001" << endl; + } + catch (...) + { + return 1; + } +} -- cgit v1.1