#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) { … }
}