1// Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend.
2//
3// testify contains the following packages:
4//
5// The assert package provides a comprehensive set of assertion functions that tie in to the Go testing system.
6//
7// The http package contains tools to make it easier to test http activity using the Go testing system.
8//
9// The mock package provides a system by which it is possible to mock your objects and verify calls are happening as expected.
10//
11// The suite package provides a basic structure for using structs as testing suites, and methods on those structs as tests.  It includes setup/teardown functionality in the way of interfaces.
12package testify
13
14// blank imports help docs.
15import (
16	// assert package
17	_ "github.com/stretchr/testify/assert"
18	// http package
19	_ "github.com/stretchr/testify/http"
20	// mock package
21	_ "github.com/stretchr/testify/mock"
22)
23