1 // Copyright 2021 The Kubernetes Authors. 2 // SPDX-License-Identifier: Apache-2.0 3 4 package apply 5 6 import ( 7 "os" 8 "testing" 9 10 "k8s.io/klog/v2" 11 ) 12 13 // TestMain executes the tests for this package, with optional logging. 14 // To see all logs, use: 15 // go test sigs.k8s.io/cli-utils/pkg/apply -v -args -v=5 16 func TestMain(m *testing.M) { 17 klog.InitFlags(nil) 18 os.Exit(m.Run()) 19 } 20