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

de.ikor.sip.foundation.testkit.configurationproperties.TestCaseDefinition Maven / Gradle / Ivy

There is a newer version: 3.6.1
Show newest version
package de.ikor.sip.foundation.testkit.configurationproperties;

import com.fasterxml.jackson.annotation.*;
import de.ikor.sip.foundation.testkit.configurationproperties.models.EndpointProperties;
import java.util.*;
import lombok.Data;

/** Definition of a single test case. */
@Data
public class TestCaseDefinition {
  @JsonProperty("schema_version")
  private double schemaVersion;

  private String title = UUID.randomUUID().toString();

  @JsonProperty("when-execute")
  private EndpointProperties whenExecute;

  @JsonProperty("with-mocks")
  private List withMocks = new ArrayList<>();

  @JsonProperty("then-expect")
  private List thenExpect = new ArrayList<>();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy