OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |