11 lines
142 B
Go
11 lines
142 B
Go
|
|
package test
|
||
|
|
|
||
|
|
import (
|
||
|
|
"testing"
|
||
|
|
"zworld/engine/render/vulkan/instance"
|
||
|
|
)
|
||
|
|
|
||
|
|
func TestInstance(t *testing.T) {
|
||
|
|
instance.New("hello world")
|
||
|
|
}
|