chromium/third_party/blink/renderer/core/css/parser/css_parser_token_test.cc

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

#include "third_party/blink/renderer/core/css/parser/css_parser_token.h"

#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/core/css/parser/css_tokenizer.h"

namespace blink {

static CSSParserToken IdentToken(const String& string) {}
static CSSParserToken DimensionToken(double value, const String& unit) {}

TEST(CSSParserTokenTest, IdentTokenEquality) {}

TEST(CSSParserTokenTest, DimensionTokenEquality) {}

static String RoundTripToken(String str) {}

TEST(CSSParserTokenTest, SerializeDoubles) {}

}  // namespace blink