StartMockServerWithMinimumCLIVersion starts a server with the default V2 and V3 API versions and the given minimum CLI version.
(minCLIVersion string)
| 28 | // StartMockServerWithMinimumCLIVersion starts a server with the default V2 and V3 |
| 29 | // API versions and the given minimum CLI version. |
| 30 | func StartMockServerWithMinimumCLIVersion(minCLIVersion string) *Server { |
| 31 | return startServerWithVersions(DefaultV2Version, DefaultV3Version, &minCLIVersion, DefaultAuthorizationPath) |
| 32 | } |
| 33 | |
| 34 | // StartMockServerWithAPIVersions starts a server with the given V2 and V3 |
| 35 | // API versions |
no test coverage detected