gecko/vms/propertyfx/factory_test.go

13 lines
179 B
Go

package propertyfx
import (
"testing"
)
func TestFactory(t *testing.T) {
factory := Factory{}
if fx := factory.New(); fx == nil {
t.Fatalf("Factory.New returned nil")
}
}