people_test.go 283 B

123456789101112
  1. package model
  2. import "testing"
  3. func TestPeople_GetAge(t *testing.T) {
  4. //接口不能实例化,只能对接口的结构体实例化
  5. peo := &People{"derek"}
  6. allrun(peo) //derek在跑步
  7. //多态,条件不同结果不同
  8. a := &Animal{"小狗"}
  9. allrun(a) //小狗在跑步
  10. }