From d8f17225790c6dec1af916fc9eb1f3558ab58f9a Mon Sep 17 00:00:00 2001 From: Javier Feliu Date: Fri, 25 Oct 2019 23:40:25 -0400 Subject: [PATCH] forgot to add new tests for connection-labels --- .../connectionlabels/connectionlabels.go | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 testingsupport/connectionlabels/connectionlabels.go diff --git a/testingsupport/connectionlabels/connectionlabels.go b/testingsupport/connectionlabels/connectionlabels.go new file mode 100644 index 0000000..3702775 --- /dev/null +++ b/testingsupport/connectionlabels/connectionlabels.go @@ -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