mirror of
https://github.com/paralus/paralus.git
synced 2026-02-14 17:49:51 +00:00
19 lines
247 B
Go
19 lines
247 B
Go
package apply
|
|
|
|
import (
|
|
"testing"
|
|
|
|
clusterv2 "github.com/paralus/paralus/proto/types/controller"
|
|
)
|
|
|
|
func TestGetGVK(t *testing.T) {
|
|
ns := clusterv2.Namespace{}
|
|
|
|
gvk, err := GetGVK(&ns)
|
|
if err != nil {
|
|
t.Error(err)
|
|
return
|
|
}
|
|
t.Log(gvk)
|
|
}
|