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

Unified Diff: chrome/browser/spellchecker/misspelling_unittest.cc

Issue 2244083002: Componentize spellcheck [4]: spellcheck/browser and android java-side. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 4 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/browser/spellchecker/misspelling_unittest.cc
diff --git a/chrome/browser/spellchecker/misspelling_unittest.cc b/chrome/browser/spellchecker/misspelling_unittest.cc
deleted file mode 100644
index 701fb916f4721cfe3f167ecb56f7841b312a554b..0000000000000000000000000000000000000000
--- a/chrome/browser/spellchecker/misspelling_unittest.cc
+++ /dev/null
@@ -1,53 +0,0 @@
-// Copyright (c) 2013 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.
-//
-// Unit tests for |Misspelling| object.
-
-#include "chrome/browser/spellchecker/misspelling.h"
-
-#include "base/json/json_reader.h"
-#include "base/strings/utf_string_conversions.h"
-#include "base/values.h"
-#include "testing/gtest/include/gtest/gtest.h"
-
-TEST(MisspellingTest, SerializeTest) {
- Misspelling misspelling;
- misspelling.context = base::ASCIIToUTF16("How doe sit know");
- misspelling.location = 4;
- misspelling.length = 7;
- misspelling.timestamp = base::Time::FromJsTime(42);
- misspelling.hash = 9001;
- misspelling.suggestions.push_back(base::ASCIIToUTF16("does it"));
-
- std::unique_ptr<base::Value> expected = base::JSONReader::Read(
- "{\"originalText\": \"How doe sit know\","
- "\"misspelledStart\": 4,"
- "\"misspelledLength\": 7,"
- "\"timestamp\": \"42\","
- "\"suggestionId\":\"9001\","
- "\"suggestions\": [\"does it\"],"
- "\"userActions\": [{\"actionType\": \"PENDING\"}]}");
-
- std::unique_ptr<base::DictionaryValue> serialized(
- SerializeMisspelling(misspelling));
- EXPECT_TRUE(serialized->Equals(expected.get()));
-}
-
-TEST(MisspellingTest, GetMisspelledStringTest) {
- Misspelling misspelling;
- misspelling.context = base::ASCIIToUTF16("How doe sit know");
- misspelling.location = 4;
- misspelling.length = 7;
- EXPECT_EQ(base::ASCIIToUTF16("doe sit"), GetMisspelledString(misspelling));
-
- misspelling.length = 0;
- EXPECT_EQ(base::string16(), GetMisspelledString(misspelling));
-
- misspelling.location = misspelling.context.length();
- misspelling.length = 7;
- EXPECT_EQ(base::string16(), GetMisspelledString(misspelling));
-
- misspelling.location = misspelling.context.length() + 1;
- EXPECT_EQ(base::string16(), GetMisspelledString(misspelling));
-}

Powered by Google App Engine
This is Rietveld 408576698