// 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/spelling_marker.h" #include "testing/gtest/include/gtest/gtest.h" namespace blink { const char* const kTestDescription = …; class SpellingMarkerTest : public testing::Test { … }; TEST_F(SpellingMarkerTest, MarkerType) { … } TEST_F(SpellingMarkerTest, IsSpellCheckMarker) { … } TEST_F(SpellingMarkerTest, ConstructorAndGetters) { … } } // namespace blink