You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
246 B
C++

#include <gtest/gtest.h>
#include <exiv2/types.hpp>
using namespace Exiv2;
TEST(ExivTime, getsTimeFromValidString)
{
struct tm tmInstance;
ASSERT_EQ(0, exifTime("2007:05:24 12:31:55", &tmInstance));
/// \todo add more checks here
}