public void GetTeamByContextReturnsEmptyListWhenNoTeamsMatchContextFlag()
        {
            var response = _teamGateway.GetTeamsByTeamContextFlag("A");

            response.Count().Should().Be(0);
        }