chromium/ui/base/models/list_selection_model_unittest.cc

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

#include "ui/base/models/list_selection_model.h"

#include <stddef.h>

#include <algorithm>
#include <string>

#include "base/strings/string_number_conversions.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace ui {

ListSelectionModelTest;

TEST_F(ListSelectionModelTest, InitialState) {}

TEST_F(ListSelectionModelTest, SetSelectedIndex) {}

TEST_F(ListSelectionModelTest, SetSelectedIndexToEmpty) {}

TEST_F(ListSelectionModelTest, IncrementFrom) {}

TEST_F(ListSelectionModelTest, DecrementFrom) {}

TEST_F(ListSelectionModelTest, IsSelected) {}

TEST_F(ListSelectionModelTest, AddIndexToSelected) {}

TEST_F(ListSelectionModelTest, AddIndexRangeToSelection) {}

TEST_F(ListSelectionModelTest, RemoveIndexFromSelection) {}

TEST_F(ListSelectionModelTest, SetSelectionFromAnchorTo) {}

TEST_F(ListSelectionModelTest, Clear) {}

TEST_F(ListSelectionModelTest, MoveToLeft) {}

TEST_F(ListSelectionModelTest, MoveToRight) {}

TEST_F(ListSelectionModelTest, Copy) {}

TEST_F(ListSelectionModelTest, AddSelectionFromAnchorTo) {}

TEST_F(ListSelectionModelTest, Equals) {}

}  // namespace ui