chromium/components/feature_engagement/internal/system_time_provider_unittest.cc

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

#include "components/feature_engagement/internal/system_time_provider.h"

#include "base/time/time.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace feature_engagement {

namespace {

base::Time GetTime(int year, int month, int day) {}

// A SystemTimeProvider where the current time can be defined at runtime.
class TestSystemTimeProvider : public SystemTimeProvider {};

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

}  // namespace

TEST_F(SystemTimeProviderTest, EpochIs0Days) {}

TEST_F(SystemTimeProviderTest, TestDeltasFromEpoch) {}

TEST_F(SystemTimeProviderTest, TestNegativeDeltasFromEpoch) {}

TEST_F(SystemTimeProviderTest, TestManualDatesAroundEpoch) {}

TEST_F(SystemTimeProviderTest, TestManualDatesAroundGoogleIO2017) {}

}  // namespace feature_engagement