deleteTestSet method

Future<void> deleteTestSet({
  1. required String testSetId,
})

The action to delete the selected test set.

May throw ConflictException. May throw InternalServerException. May throw PreconditionFailedException. May throw ServiceQuotaExceededException. May throw ThrottlingException. May throw ValidationException.

Parameter testSetId : The test set Id of the test set to be deleted.

Implementation

Future<void> deleteTestSet({
  required String testSetId,
}) async {
  await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri: '/testsets/${Uri.encodeComponent(testSetId)}',
    exceptionFnMap: _exceptionFns,
  );
}