• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2013 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #include "base/substring_set_matcher/matcher_string_pattern.h"
6 
7 #include <string>
8 
9 #include "testing/gtest/include/gtest/gtest.h"
10 
11 namespace base {
12 
TEST(MatcherStringPatternTest,MatcherStringPattern)13 TEST(MatcherStringPatternTest, MatcherStringPattern) {
14   MatcherStringPattern r1("Test", 2);
15   EXPECT_EQ("Test", r1.pattern());
16   EXPECT_EQ(2u, r1.id());
17 
18   EXPECT_FALSE(r1 < r1);
19   MatcherStringPattern r2("Test", 3);
20   EXPECT_TRUE(r1 < r2);
21   MatcherStringPattern r3("ZZZZ", 2);
22   EXPECT_TRUE(r1 < r3);
23 }
24 
25 }  // namespace base
26