Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2475)

Side by Side Diff: extensions/common/matcher/string_pattern_unittest.cc

Issue 12092096: Move c/c/extensions/matcher/ to top level extension dir (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: TOT Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/common/extensions/matcher/string_pattern.h" 5 #include "extensions/common/matcher/string_pattern.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "testing/gtest/include/gtest/gtest.h" 9 #include "testing/gtest/include/gtest/gtest.h"
10 10
11 using extensions::StringPattern; 11 using extensions::StringPattern;
12 12
13 TEST(StringPatternTest, StringPattern) { 13 TEST(StringPatternTest, StringPattern) {
14 StringPattern r1("Test", 2); 14 StringPattern r1("Test", 2);
15 EXPECT_EQ("Test", r1.pattern()); 15 EXPECT_EQ("Test", r1.pattern());
16 EXPECT_EQ(2, r1.id()); 16 EXPECT_EQ(2, r1.id());
17 17
18 EXPECT_FALSE(r1 < r1); 18 EXPECT_FALSE(r1 < r1);
19 StringPattern r2("Test", 3); 19 StringPattern r2("Test", 3);
20 EXPECT_TRUE(r1 < r2); 20 EXPECT_TRUE(r1 < r2);
21 StringPattern r3("ZZZZ", 2); 21 StringPattern r3("ZZZZ", 2);
22 EXPECT_TRUE(r1 < r3); 22 EXPECT_TRUE(r1 < r3);
23 } 23 }
OLDNEW
« no previous file with comments | « extensions/common/matcher/string_pattern.cc ('k') | extensions/common/matcher/substring_set_matcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698