chromium/third_party/blink/renderer/core/animation/list_interpolation_functions_test.cc

// Copyright 2018 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/animation/list_interpolation_functions.h"

#include <utility>

#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/core/animation/css_number_interpolation_type.h"
#include "third_party/blink/renderer/core/animation/interpolation_value.h"
#include "third_party/blink/renderer/core/animation/underlying_value.h"
#include "third_party/blink/renderer/core/css/properties/longhands.h"
#include "third_party/blink/renderer/platform/testing/task_environment.h"
#include "third_party/blink/renderer/platform/wtf/functional.h"

namespace blink {

namespace  // namespace

TEST(ListInterpolationFunctionsTest, EqualMergeSinglesSameLengths) {}

TEST(ListInterpolationFunctionsTest, EqualMergeSinglesDifferentLengths) {}

TEST(ListInterpolationFunctionsTest, EqualMergeSinglesIncompatibleValues) {}

TEST(ListInterpolationFunctionsTest, EqualMergeSinglesIncompatibleNullptrs) {}

TEST(ListInterpolationFunctionsTest, EqualCompositeSameLengths) {}

// Two lists of different lengths are not interpolable, so we expect the
// underlying value to be replaced.
TEST(ListInterpolationFunctionsTest, EqualCompositeDifferentLengths) {}

// If one (or more) of the element pairs are incompatible, the list as a whole
// is non-interpolable. We expect the underlying value to be replaced.
TEST(ListInterpolationFunctionsTest,
     EqualCompositeIncompatibleInterpolableValues) {}

// If one (or more) of the element pairs are incompatible, the list as a whole
// is non-interpolable. We expect the underlying value to be replaced.
TEST(ListInterpolationFunctionsTest,
     EqualCompositeIncompatibleNonInterpolableValues) {}

TEST(ListInterpolationFunctionsTest, BuilderNoModify) {}

TEST(ListInterpolationFunctionsTest, BuilderModifyFirst) {}

TEST(ListInterpolationFunctionsTest, BuilderModifyMiddle) {}

TEST(ListInterpolationFunctionsTest, BuilderModifyLast) {}

TEST(ListInterpolationFunctionsTest, BuilderModifyAll) {}

TEST(ListInterpolationFunctionsTest, BuilderModifyReverse) {}

TEST(ListInterpolationFunctionsTest, BuilderModifyListWithOneItem) {}

}  // namespace blink