You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
403 B
17 lines
403 B
// Copyright (c) Tailscale Inc & AUTHORS
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
package posture
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"tailscale.com/types/logger"
|
|
"tailscale.com/util/syspolicy/policyclient"
|
|
)
|
|
|
|
func TestGetSerialNumber(t *testing.T) {
|
|
// ensure GetSerialNumbers is implemented
|
|
// or covered by a stub on a given platform.
|
|
_, _ = GetSerialNumbers(policyclient.NoPolicyClient{}, logger.Discard)
|
|
}
|
|
|