diff options
author | Constantin Michael <constantin@codesynthesis.com> | 2011-04-01 18:08:51 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2011-04-04 18:11:34 +0200 |
commit | 14ca0adb63a48e5bc14a4a2b84e0d108be6dfdd1 (patch) | |
tree | d8440b4ba42b0cbb432397007b91479574b03782 /boost/sqlite/date-time/test.hxx | |
parent | d2c7dda761658e45d150172991b5231d0e979007 (diff) |
Add SQLite-specific tests for Boost profile
Diffstat (limited to 'boost/sqlite/date-time/test.hxx')
-rw-r--r-- | boost/sqlite/date-time/test.hxx | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/boost/sqlite/date-time/test.hxx b/boost/sqlite/date-time/test.hxx new file mode 100644 index 0000000..020bc7d --- /dev/null +++ b/boost/sqlite/date-time/test.hxx @@ -0,0 +1,59 @@ +// file : boost/sqlite/date-time/test.hxx +// author : Constantin Michael <constantin@codesynthesis.com> +// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +#ifndef TEST_HXX +#define TEST_HXX + +#include <vector> + +#include <boost/date_time/gregorian/gregorian_types.hpp> +#include <boost/date_time/posix_time/posix_time_types.hpp> + +#include <odb/core.hxx> + +#pragma db object +struct object +{ + object () + { + } + + bool + operator== (const object& x) const + { + return + id == x.id && + dates == x.dates && + times == x.times && + durations == x.durations && + u_dates == x.u_dates && + u_times == x.u_times && + s_durations == x.s_durations; + } + + #pragma db id auto + unsigned long id; + + std::vector<boost::gregorian::date> dates; + std::vector<boost::posix_time::ptime> times; + std::vector<boost::posix_time::time_duration> durations; + + // Dates as UNIX time. + // + #pragma db value_type("INTEGER") + std::vector<boost::gregorian::date> u_dates; + + // Times as UNIX time. + // + #pragma db value_type("INTEGER") + std::vector<boost::posix_time::ptime> u_times; + + // Durations as seconds. + // + #pragma db value_type("INTEGER") + std::vector<boost::posix_time::time_duration> s_durations; +}; + +#endif // TEST_HXX |