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

com.chutneytesting.design.api.scenario.v2_0.dto.GwtScenarioDto Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
package com.chutneytesting.design.api.scenario.v2_0.dto;

import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import java.util.List;
import org.immutables.value.Value;

@Value.Immutable
@JsonSerialize(as = ImmutableGwtScenarioDto.class)
@JsonDeserialize(as = ImmutableGwtScenarioDto.class)
@Value.Style(jdkOnly = true)
public interface GwtScenarioDto {

    List givens();

    GwtStepDto when();

    List thens();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy