di/registry/registry_test.go
crusader c3f8e35ea0 ing
2017-12-05 22:31:19 +09:00

25 lines
604 B
Go

package registry
import (
"reflect"
"testing"
cda "git.loafle.net/commons_go/di/annotation"
)
func TestRegisterType(t *testing.T) {
RegisterType(reflect.TypeOf((*TestStruct)(nil)), &cda.ComponentAnnotation{})
RegisterType(reflect.TypeOf((*TestStruct)(nil)), &cda.ComponentAnnotation{
Names: []string{"test1", "test2"},
})
RegisterType(reflect.TypeOf((*TestStruct)(nil)), &cda.ComponentAnnotation{
Names: []string{"test1", "test2"},
})
}
type TestStruct struct {
Name1 string `annotation:"@Inject"`
Name2 string `annotation:"@Inject()"`
Name3 string `annotation:"@Inject(name=test)"`
}