blob: 7f7892524f5d155f4385bb492041670e1256a95c [file] [log] [blame]
// Copyright 2020 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.
//go:build go1.18
// +build go1.18
package copyright
import (
"strings"
"testing"
)
func TestToolsCopyright(t *testing.T) {
files, err := checkCopyright("..")
if err != nil {
t.Fatal(err)
}
if len(files) > 0 {
t.Errorf("The following files are missing copyright notices:\n%s", strings.Join(files, "\n"))
}
}