Skip to content

Commit

Permalink
Add interface implementation test
Browse files Browse the repository at this point in the history
  • Loading branch information
ecc1 committed Jul 26, 2018
1 parent 7d7f675 commit e01ebc4
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions interface_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
package dexcom

var (
// Ensure that *bleConn implements the Connection interface.
_ Connection = (*bleConn)(nil)

// Ensure that *usbConn implements the Connection interface.
_ Connection = (*usbConn)(nil)
)

0 comments on commit e01ebc4

Please sign in to comment.