All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.azure.core.test.TestMode Maven / Gradle / Ivy

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,
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy