chromium/components/url_pattern_index/url_pattern_unittest.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 "components/url_pattern_index/url_pattern.h"

#include "testing/gtest/include/gtest/gtest.h"
#include "url/gurl.h"

namespace url_pattern_index {

namespace {

constexpr proto::AnchorType kAnchorNone =;
constexpr proto::AnchorType kBoundary =;
constexpr proto::AnchorType kSubdomain =;
constexpr UrlPattern::MatchCase kMatchCase =;
constexpr UrlPattern::MatchCase kDonotMatchCase =;

}  // namespace

TEST(UrlPatternTest, MatchesUrl) {}

}  // namespace url_pattern_index