blob: f244455586bd450bc51e9960283939398897a6e6 [file] [log] [blame]
Robert Findleyb15dac22022-08-30 14:40:12 -04001// Copyright 2019 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
5package myers_test
6
7import (
8 "testing"
9
10 "golang.org/x/tools/internal/diff/difftest"
11 "golang.org/x/tools/internal/diff/myers"
12)
13
14func TestDiff(t *testing.T) {
15 difftest.DiffTest(t, myers.ComputeEdits)
16}