1// Copyright 2013 The Flutter Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "flutter/fml/time/time_point.h"
6
7#include "gtest/gtest.h"
8
9namespace fml {
10namespace {
11
12TEST(TimePoint, Control) {
13 EXPECT_LT(TimePoint::Min(), TimePoint::Now());
14 EXPECT_GT(TimePoint::Max(), TimePoint::Now());
15}
16
17} // namespace
18} // namespace fml
19