~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to unittests/timestamp_test.cc

modifying folder structure

Show diffs side-by-side

added added

removed removed

Lines of Context:
243
243
  time_t time;
244
244
  TemporalGenerator::TimestampGen::make_timestamp(&timestamp, 2009, 6, 3, 4, 59, 1);
245
245
  
246
 
  timestamp.to_time_t(&time);
 
246
  timestamp.to_time_t(time);
247
247
  
248
248
  ASSERT_EQ(1244005141, time);
249
249
}