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

Side by Side Diff: extensions/common/matcher/substring_set_matcher_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/substring_set_matcher.h" 5 #include "extensions/common/matcher/substring_set_matcher.h"
6 6
7 #include <set> 7 #include <set>
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
11 #include "testing/gtest/include/gtest/gtest.h" 11 #include "testing/gtest/include/gtest/gtest.h"
12 12
13 using extensions::StringPattern; 13 using extensions::StringPattern;
14 using extensions::SubstringSetMatcher; 14 using extensions::SubstringSetMatcher;
15 15
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 matcher.UnregisterPatterns(patterns); 158 matcher.UnregisterPatterns(patterns);
159 EXPECT_TRUE(matcher.IsEmpty()); 159 EXPECT_TRUE(matcher.IsEmpty());
160 } 160 }
161 161
162 TEST(SubstringSetMatcherTest, TestEmptyMatcher) { 162 TEST(SubstringSetMatcherTest, TestEmptyMatcher) {
163 SubstringSetMatcher matcher; 163 SubstringSetMatcher matcher;
164 std::set<int> matches; 164 std::set<int> matches;
165 matcher.Match("abd", &matches); 165 matcher.Match("abd", &matches);
166 EXPECT_TRUE(matches.empty()); 166 EXPECT_TRUE(matches.empty());
167 } 167 }
OLDNEW
« no previous file with comments | « extensions/common/matcher/substring_set_matcher.cc ('k') | extensions/common/matcher/url_matcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698