mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2026-01-11 14:35:27 +00:00
21 lines
633 B
Go
21 lines
633 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package testdata
|
|
|
|
import "testing"
|
|
|
|
// Test_GoDocOK is a test that has a go doc
|
|
func Test_GoDocOK(t *testing.T) {}
|
|
|
|
func Test_NoGoDocFails(t *testing.T) {} // want "Test Test_NoGoDocFails is missing a go doc"
|
|
|
|
// This test does not have a go doc beginning with the function name
|
|
func Test_BadGoDocFails(t *testing.T) {} // want "Test Test_BadGoDocFails must have a go doc beginning with the function name"
|
|
|
|
func test_TestHelperNoGoDocOK(t *testing.T) {}
|
|
|
|
func Test_DifferentSignatureNoGoDocOK() {}
|
|
|
|
func Test_DifferentSignature2NoGoDocOK(t *testing.T, a int) {}
|