summaryrefslogtreecommitdiffstats
path: root/components/url_matcher/string_pattern_unittest.cc
blob: 460f431fc6f0eb28173f434c47a72fdf7487f2db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright 2013 The Chromium 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 "components/url_matcher/string_pattern.h"

#include <string>

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

namespace url_matcher {

TEST(StringPatternTest, StringPattern) {
  StringPattern r1("Test", 2);
  EXPECT_EQ("Test", r1.pattern());
  EXPECT_EQ(2, r1.id());

  EXPECT_FALSE(r1 < r1);
  StringPattern r2("Test", 3);
  EXPECT_TRUE(r1 < r2);
  StringPattern r3("ZZZZ", 2);
  EXPECT_TRUE(r1 < r3);
}

}  // namespace url_matcher