mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-14 10:37:00 +02:00
15 lines
228 B
Go
15 lines
228 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
package mock
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/hashicorp/vault/sdk/logical"
|
|
)
|
|
|
|
func TestBackend_impl(t *testing.T) {
|
|
var _ logical.Backend = new(backend)
|
|
}
|