package dict_topic import "testing" /* Тест для ... */ type tester struct { t *testing.T } func TestAny(t *testing.T) { sf := &tester{ t: t, } sf.create() } func (sf *tester) create() { sf.t.Log("create") }