2019-01-17 09:59:05 -07:00
|
|
|
// Copyright 2019 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2019-08-19 17:28:08 -06:00
|
|
|
package myers_test
|
2019-01-17 09:59:05 -07:00
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
2019-04-08 07:22:58 -06:00
|
|
|
|
2019-10-01 16:08:04 -06:00
|
|
|
"golang.org/x/tools/internal/lsp/diff/difftest"
|
2019-08-19 17:28:08 -06:00
|
|
|
"golang.org/x/tools/internal/lsp/diff/myers"
|
2019-01-17 09:59:05 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestDiff(t *testing.T) {
|
2019-10-01 16:08:04 -06:00
|
|
|
difftest.DiffTest(t, myers.ComputeEdits)
|
|
|
|
}
|