chromium/third_party/blink/renderer/core/editing/markers/spelling_marker_list_impl_test.cc

// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "third_party/blink/renderer/core/editing/markers/spell_check_marker_list_impl.h"

#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/core/editing/markers/spelling_marker.h"
#include "third_party/blink/renderer/core/editing/markers/spelling_marker_list_impl.h"
#include "third_party/blink/renderer/platform/heap/persistent.h"

namespace blink {

// This test class tests functionality implemented by SpellingMarkerListImpl and
// also functionality implemented by its parent class SpellCheckMarkerListImpl.

class SpellingMarkerListImplTest : public testing::Test {};

// Test cases for functionality implemented by SpellingMarkerListImpl.

TEST_F(SpellingMarkerListImplTest, MarkerType) {}

// Test cases for functionality implemented by SpellCheckMarkerListImpl

TEST_F(SpellingMarkerListImplTest, AddSorting) {}

TEST_F(SpellingMarkerListImplTest, AddIntoEmptyList) {}

TEST_F(SpellingMarkerListImplTest, AddMarkerNonMerging) {}

TEST_F(SpellingMarkerListImplTest, AddMarkerMergingLater) {}

TEST_F(SpellingMarkerListImplTest, AddMarkerMergingEarlier) {}

TEST_F(SpellingMarkerListImplTest, AddMarkerMergingEarlierAndLater) {}

TEST_F(SpellingMarkerListImplTest, RemoveMarkersUnderWords) {}

}  // namespace