chromium/third_party/blink/renderer/core/inspector/inspector_diff_test.cc

// Copyright 2023 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/inspector/inspector_diff.h"

#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/platform/wtf/vector.h"
#include "third_party/googletest/src/googletest/include/gtest/gtest.h"

namespace blink {

class InspectorDiffTest : public testing::Test {};

struct Match {};

class CompareArrayInput : public InspectorDiff::Input {};

class CompareArrayOutput : public InspectorDiff::Output {};

TEST_F(InspectorDiffTest, CalculateMatches) {}

TEST_F(InspectorDiffTest, CalculateMatchesAllDifferent) {}

TEST_F(InspectorDiffTest, CalculateMatchesDifferentInMiddle) {}

TEST_F(InspectorDiffTest, CalculateMatchesDifferentAtStart) {}

TEST_F(InspectorDiffTest, CalculateMatchesNoDifferentAtEnd) {}

TEST_F(InspectorDiffTest, CalculateMatchesRemoval) {}

TEST_F(InspectorDiffTest, CalculateMatchesRemovalAndModifications) {}

TEST_F(InspectorDiffTest, CalculateMatchesFindsLCS) {}

TEST_F(InspectorDiffTest, FindLCSMappingSameElements) {}

TEST_F(InspectorDiffTest, FindLCSMappingOneElement) {}

TEST_F(InspectorDiffTest, FindLCSMappingDifferentCase) {}

TEST_F(InspectorDiffTest, FindLCSMappingNoElements) {}

TEST_F(InspectorDiffTest, FindLCSMappingFindsLCSMapping) {}

}  // namespace blink