chromium/v8/test/unittests/date/date-cache-unittest.cc

// Copyright 2019 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifdef V8_INTL_SUPPORT
#include "src/base/platform/platform.h"
#include "src/date/date.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "unicode/strenum.h"
#include "unicode/timezone.h"

namespace v8 {
namespace internal {

// A recent time for the test.
// 2019-05-08T04:16:04.845Z
static const int64_t kStartTime =;

class AdoptDefaultThread final : public base::Thread {};

class GetLocalOffsetFromOSThread final : public base::Thread {};

class LocalTimezoneThread final : public base::Thread {};

TEST(DateCache, AdoptDefaultFirst) {}

TEST(DateCache, AdoptDefaultMixed) {}

}  // namespace internal
}  // namespace v8

#endif  // V8_INTL_SUPPORT