# Functions

HandleCreateProjectSuccessfully creates an HTTP handler at `/projects` on the test handler mux that tests project creation.
HandleDeleteProjectSuccessfully creates an HTTP handler at `/projects` on the test handler mux that tests project deletion.
HandleGetProjectSuccessfully creates an HTTP handler at `/projects` on the test handler mux that responds with a single project.
HandleListAvailableProjectsSuccessfully creates an HTTP handler at `/auth/projects` on the test handler mux that responds with a list of two tenants.
HandleListProjectsSuccessfully creates an HTTP handler at `/projects` on the test handler mux that responds with a list of two tenants.
HandleUpdateProjectSuccessfully creates an HTTP handler at `/projects` on the test handler mux that tests project updates.

# Constants

CreateRequest provides the input to a Create request.
GetOutput provides a Get result.
ListAvailableOutput provides a single page of available Project results.
ListOutput provides a single page of Project results.
UpdateOutput provides an Update response.
UpdateRequest provides the input to an Update request.

# Variables

BlueTeam is a Project fixture.
ExpectedAvailableProjectsSlice is the slice of projects expected to be returned from ListAvailableOutput.
ExpectedProjectSlice is the slice of projects expected to be returned from ListOutput.
FirstProject is a Project fixture.
RedTeam is a Project fixture.
SecondProject is a Project fixture.
UpdatedRedTeam is a Project Fixture.