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

Unified Diff: chrome/common/extensions/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, 11 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 side-by-side diff with in-line comments
Download patch
Index: chrome/common/extensions/matcher/string_pattern_unittest.cc
diff --git a/chrome/common/extensions/matcher/string_pattern_unittest.cc b/chrome/common/extensions/matcher/string_pattern_unittest.cc
deleted file mode 100644
index 2580afae9ce7219941df36ac9c600304c7dc5a35..0000000000000000000000000000000000000000
--- a/chrome/common/extensions/matcher/string_pattern_unittest.cc
+++ /dev/null
@@ -1,23 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "chrome/common/extensions/matcher/string_pattern.h"
-
-#include <string>
-
-#include "testing/gtest/include/gtest/gtest.h"
-
-using extensions::StringPattern;
-
-TEST(StringPatternTest, StringPattern) {
- StringPattern r1("Test", 2);
- EXPECT_EQ("Test", r1.pattern());
- EXPECT_EQ(2, r1.id());
-
- EXPECT_FALSE(r1 < r1);
- StringPattern r2("Test", 3);
- EXPECT_TRUE(r1 < r2);
- StringPattern r3("ZZZZ", 2);
- EXPECT_TRUE(r1 < r3);
-}
« no previous file with comments | « chrome/common/extensions/matcher/string_pattern.cc ('k') | chrome/common/extensions/matcher/substring_set_matcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698