The purpose of this package is to provide a simple tool for creating test fixtures for go tests.
## What is a fixture?
A test fixture is generally used as a mechanism to provide consistent, repeatable state when testing software.
## Adding Fixtures
A fixture can be as simple as a function that returns a static value or it can leverage parameters to run the same test with different values. You can also provide a matching result set to make it easier to verify the expected results.
```
// A fixture returns some data, often based on some input parameter