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

com.vaadin.testbench.parallel.TestNameSuffix Maven / Gradle / Ivy

/**
 * Copyright (C) 2000-2022 Vaadin Ltd
 *
 * This program is available under Vaadin Commercial License and Service Terms.
 *
 * See  for the full
 * license.
 */
package com.vaadin.testbench.parallel;

import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;

/**
 * Defines a system property to be used as part of the test name.
* It may be useful to add information related to the system or the machine * itself, such as the OS.
* This will affect, for instance, the names of screenshots taken in case of * test failure.
*/ @Retention(RetentionPolicy.RUNTIME) public @interface TestNameSuffix { String property(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy