chromium/chrome/browser/web_applications/tabbed_mode_scope_matcher_unittest.cc

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

#include "chrome/browser/web_applications/tabbed_mode_scope_matcher.h"

#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/public/common/safe_url_pattern.h"
#include "third_party/liburlpattern/parse.h"
#include "url/gurl.h"

namespace {

std::vector<liburlpattern::Part> ParsePatternInitField(std::string_view field) {}

TEST(TabbedModeScopeMatcher, Empty) {}

TEST(TabbedModeScopeMatcher, Protocol) {}

TEST(TabbedModeScopeMatcher, Hostname) {}

TEST(TabbedModeScopeMatcher, Port) {}

TEST(TabbedModeScopeMatcher, Pathname) {}

TEST(TabbedModeScopeMatcher, Search) {}

TEST(TabbedModeScopeMatcher, Hash) {}

TEST(TabbedModeScopeMatcher, All) {}

}  // namespace