chromium/v8/test/unittests/strings/char-predicates-unittest.cc

// Copyright 2014 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.

#include "src/strings/char-predicates.h"
#include "src/strings/char-predicates-inl.h"
#include "src/strings/unicode.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace v8 {
namespace internal {

TEST(CharPredicatesTest, WhiteSpace) {}

TEST(CharPredicatesTest, WhiteSpaceOrLineTerminator) {}

TEST(CharPredicatesTest, IdentifierStart) {}

TEST(CharPredicatesTest, IdentifierPart) {}

#ifdef V8_INTL_SUPPORT
TEST(CharPredicatesTest, SupplementaryPlaneIdentifiers) {}
#endif  // V8_INTL_SUPPORT

}  // namespace internal
}  // namespace v8