| 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));
|
| -}
|
|
|