Skip to content

Commit

Permalink
forgot to add new tests for connection-labels
Browse files Browse the repository at this point in the history
  • Loading branch information
Javier Feliu committed Oct 26, 2019
1 parent 8fd4ecb commit d8f1722
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions testingsupport/connectionlabels/connectionlabels.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
package connectionlabels

//AbstractInterface for testing purposes
type AbstractInterface interface {
interfaceFunction() bool
}

//ImplementsAbstractInterface for testing purposes
type ImplementsAbstractInterface struct {
AliasOfInt
PublicUse AbstractInterface
}

func (iai *ImplementsAbstractInterface) interfaceFunction() bool {
return true
}

//AliasOfInt for testing purposes
type AliasOfInt int

0 comments on commit d8f1722

Please sign in to comment.