• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..09-Nov-2021-

README.mdH A D09-Nov-2021413 105

ifaceExample.goH A D09-Nov-20211.7 KiB8160

ifaceExample_test.goH A D09-Nov-20211.6 KiB6756

README.md

1# Example
2
3This example shows how the SDK's API interfaces can be used by your code instead of the concrete service client type directly. Using this pattern allows you to mock out your code's usage of the SDK's service client for testing.
4
5# Usage
6
7Use the `go test` tool to verify the `Queue` type's `GetMessages` function correctly unmarshals the SQS message responses.
8
9`go test -tags example ifaceExample.go`
10