com.azure.core.test.TestMode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-core-test Show documentation
Show all versions of azure-core-test Show documentation
This package contains core test types for Azure Java clients.
The newest version!
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
package com.azure.core.test;
/**
* The possible testing modes.
*/
public enum TestMode {
/**
* Record data from a live test.
*/
RECORD,
/**
* Run a live test without recording.
*/
LIVE,
/**
* Playback data from an existing test session.
*/
PLAYBACK,
}