1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
package service import ( "testing" "github.com/stretchr/testify/assert" ) func TestEntry_CanServeFalse(t *testing.T) { e := &entry{svc: nil} assert.False(t, e.canServe()) } func TestEntry_CanServeTrue(t *testing.T) { e := &entry{svc: &testService{}} assert.True(t, e.canServe()) }