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

Unified Diff: test/unittests/char-predicates-unittest.cc

Issue 644973002: Conform to the unittest naming convention. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 2 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
« no previous file with comments | « no previous file | test/unittests/unicode/unicode-predicates-unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/unittests/char-predicates-unittest.cc
diff --git a/test/unittests/unicode/unicode-predicates-unittest.cc b/test/unittests/char-predicates-unittest.cc
similarity index 94%
rename from test/unittests/unicode/unicode-predicates-unittest.cc
rename to test/unittests/char-predicates-unittest.cc
index 71f20d28733f72ef790e60b9ada12004b1bd89a8..d1ba2c5da8150746efd0e1b431dee78f2a2837f7 100644
--- a/test/unittests/unicode/unicode-predicates-unittest.cc
+++ b/test/unittests/char-predicates-unittest.cc
@@ -9,7 +9,7 @@
namespace v8 {
namespace internal {
-TEST(UnicodePredicatesTest, WhiteSpace) {
+TEST(CharPredicatesTest, WhiteSpace) {
// As of Unicode 6.3.0, \u180E is no longer a white space. We still consider
// it to be one though, since JS recognizes all white spaces in Unicode 5.1.
EXPECT_TRUE(WhiteSpace::Is(0x0009));
@@ -22,7 +22,7 @@ TEST(UnicodePredicatesTest, WhiteSpace) {
}
-TEST(UnicodePredicatesTest, WhiteSpaceOrLineTerminator) {
+TEST(CharPredicatesTest, WhiteSpaceOrLineTerminator) {
// As of Unicode 6.3.0, \u180E is no longer a white space. We still consider
// it to be one though, since JS recognizes all white spaces in Unicode 5.1.
// White spaces
@@ -41,7 +41,7 @@ TEST(UnicodePredicatesTest, WhiteSpaceOrLineTerminator) {
}
-TEST(UnicodePredicatesTest, IdentifierStart) {
+TEST(CharPredicatesTest, IdentifierStart) {
EXPECT_TRUE(IdentifierStart::Is('$'));
EXPECT_TRUE(IdentifierStart::Is('_'));
EXPECT_TRUE(IdentifierStart::Is('\\'));
@@ -59,7 +59,7 @@ TEST(UnicodePredicatesTest, IdentifierStart) {
}
-TEST(UnicodePredicatesTest, IdentifierPart) {
+TEST(CharPredicatesTest, IdentifierPart) {
EXPECT_TRUE(IdentifierPart::Is('$'));
EXPECT_TRUE(IdentifierPart::Is('_'));
EXPECT_TRUE(IdentifierPart::Is('\\'));
@@ -88,7 +88,7 @@ TEST(UnicodePredicatesTest, IdentifierPart) {
#ifdef V8_I18N_SUPPORT
-TEST(UnicodePredicatesTest, SupplementaryPlaneIdentifiers) {
+TEST(CharPredicatesTest, SupplementaryPlaneIdentifiers) {
// Both ID_Start and ID_Continue.
EXPECT_TRUE(IdentifierStart::Is(0x10403)); // Category Lu
EXPECT_TRUE(IdentifierPart::Is(0x10403));
« no previous file with comments | « no previous file | test/unittests/unicode/unicode-predicates-unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698