chromium/ui/base/l10n/time_format_unittest.cc

// Copyright 2011 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "ui/base/l10n/time_format.h"

#include <string>

#include "base/files/file_path.h"
#include "base/strings/utf_string_conversions.h"
#include "base/time/time.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/base/l10n/formatter.h"

ASCIIToUTF16;

namespace ui {
namespace {


class TimeFormatTest : public ::testing::Test {};

TEST_F(TimeFormatTest, SimpleAndDetailedRounding) {}

// Test strings in default code path.
TEST_F(TimeFormatTest, SimpleAndDetailedStrings) {}

// Test strings in fallback path in case of translator error.
TEST_F(TimeFormatTest, SimpleAndDetailedStringFallback) {}

// crbug.com/159388: This test fails when daylight savings time ends.
TEST_F(TimeFormatTest, RelativeDate) {}

}  // namespace
}  // namespace ui