mirror of
https://github.com/golang/go
synced 2024-11-18 16:24:42 -07:00
71894ab67e
this makes sure that any diff implementation obeys the semantics we expect at higher layers Change-Id: Iae8842cfb9fece94ea71c04ec146d825eff0cbeb Reviewed-on: https://go-review.googlesource.com/c/tools/+/191017 Run-TryBot: Ian Cottrell <iancottrell@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Rebecca Stambler <rstambler@golang.org>
16 lines
306 B
Go
16 lines
306 B
Go
// 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.
|
|
|
|
package diff_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"golang.org/x/tools/internal/lsp/diff/difftest"
|
|
)
|
|
|
|
func TestDiff(t *testing.T) {
|
|
difftest.DiffTest(t)
|
|
}
|