mirror of https://github.com/golang/go.git
32 lines
676 B
Go
32 lines
676 B
Go
// Copyright 2021 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 command_test
|
|
|
|
import (
|
|
"bytes"
|
|
"io/ioutil"
|
|
"testing"
|
|
|
|
"golang.org/x/tools/internal/lsp/command/gen"
|
|
"golang.org/x/tools/internal/testenv"
|
|
)
|
|
|
|
func TestGenerated(t *testing.T) {
|
|
testenv.NeedsGoBuild(t) // This is a lie. We actually need the source code.
|
|
|
|
onDisk, err := ioutil.ReadFile("command_gen.go")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
generated, err := gen.Generate()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if !bytes.Equal(onDisk, generated) {
|
|
t.Error("command_gen.go is stale -- regenerate")
|
|
}
|
|
}
|