blob: 11dba36f599d9a3085310cfa80cf6ff09936b0e0 [file] [log] [blame]
// Copyright (c) 2014 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "shill/shill_time.h"
#include <time.h>
#include <gtest/gtest.h>
using std::string;
using testing::Test;
namespace shill {
class TimeTest : public Test {
};
TEST_F(TimeTest, FormatTime) {
const time_t kEpochStart = 0;
const char kEpochStartString[] = "1970-01-01T00:00:00.000000+0000";
struct tm epoch_start_tm;
gmtime_r(&kEpochStart, &epoch_start_tm);
EXPECT_EQ(kEpochStartString, Time::FormatTime(epoch_start_tm, 0));
}
} // namespace shill