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

com.stanfy.helium.model.tests.ServiceTestInfo.groovy Maven / Gradle / Ivy

There is a newer version: 0.6.0
Show newest version
package com.stanfy.helium.model.tests

/**
 * Service test information.
 */
class ServiceTestInfo extends TestsInfo {

  /** List of test scenarios. */
  final List scenarios = new ArrayList<>()

  List getScenarios() { return Collections.unmodifiableList(scenarios) }

  void addScenario(final Scenario scenario) {
    scenarios.add(scenario)
  }

  Scenario scenarioByName(final String name) {
    return scenarios.find { it.name == name }
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy