[email protected] | 716c016 | 2013-12-13 20:36:53 | [diff] [blame] | 1 | // Copyright 2013 The Chromium Authors. All rights reserved. |
[email protected] | 5bcf3b7 | 2012-09-14 00:20:28 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
3 | // found in the LICENSE file. | ||||
4 | |||||
[email protected] | 716c016 | 2013-12-13 20:36:53 | [diff] [blame] | 5 | #include "components/url_matcher/string_pattern.h" |
[email protected] | 5bcf3b7 | 2012-09-14 00:20:28 | [diff] [blame] | 6 | |
7 | #include <string> | ||||
8 | |||||
9 | #include "testing/gtest/include/gtest/gtest.h" | ||||
10 | |||||
[email protected] | 716c016 | 2013-12-13 20:36:53 | [diff] [blame] | 11 | namespace url_matcher { |
[email protected] | 5bcf3b7 | 2012-09-14 00:20:28 | [diff] [blame] | 12 | |
13 | TEST(StringPatternTest, StringPattern) { | ||||
14 | StringPattern r1("Test", 2); | ||||
15 | EXPECT_EQ("Test", r1.pattern()); | ||||
16 | EXPECT_EQ(2, r1.id()); | ||||
17 | |||||
18 | EXPECT_FALSE(r1 < r1); | ||||
19 | StringPattern r2("Test", 3); | ||||
20 | EXPECT_TRUE(r1 < r2); | ||||
21 | StringPattern r3("ZZZZ", 2); | ||||
22 | EXPECT_TRUE(r1 < r3); | ||||
23 | } | ||||
[email protected] | 716c016 | 2013-12-13 20:36:53 | [diff] [blame] | 24 | |
25 | } // namespace url_matcher |