1 package petstore 2 3 import ( 4 "testing" 5 6 "github.com/stretchr/testify/require" 7 ) 8 9 func TestAPI(t *testing.T) { 10 doc, api := NewAPI(t) 11 12 require.NotNil(t, doc) 13 require.NotNil(t, api) 14 } 15
View as plain text