package Simple_Factory import "testing" func Test(t *testing.T){ teacher := NewPeople("teacher") teacher.Say("teacher") student := NewPeople("student") student.Say("student") }