diff options
Diffstat (limited to 'uitest/src/com/vaadin/tests/tb3')
-rw-r--r-- | uitest/src/com/vaadin/tests/tb3/IncludeIfProperty.java | 11 | ||||
-rw-r--r-- | uitest/src/com/vaadin/tests/tb3/ScreenshotTB3Test.java | 2 |
2 files changed, 12 insertions, 1 deletions
diff --git a/uitest/src/com/vaadin/tests/tb3/IncludeIfProperty.java b/uitest/src/com/vaadin/tests/tb3/IncludeIfProperty.java index cb04b4f2e8..789422c0c6 100644 --- a/uitest/src/com/vaadin/tests/tb3/IncludeIfProperty.java +++ b/uitest/src/com/vaadin/tests/tb3/IncludeIfProperty.java @@ -21,6 +21,17 @@ import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; +/** + * Annotation to control inclusion of a test into a test suite. + * <p> + * The test will be included in the suite only if the given System property + * {@code property} has the given {@code value}. + * <p> + * Used by {@link TB3TestLocator} + * + * @since + * @author Vaadin Ltd + */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.TYPE) @Inherited diff --git a/uitest/src/com/vaadin/tests/tb3/ScreenshotTB3Test.java b/uitest/src/com/vaadin/tests/tb3/ScreenshotTB3Test.java index 78266e9a9d..1c24720075 100644 --- a/uitest/src/com/vaadin/tests/tb3/ScreenshotTB3Test.java +++ b/uitest/src/com/vaadin/tests/tb3/ScreenshotTB3Test.java @@ -439,7 +439,7 @@ public abstract class ScreenshotTB3Test extends AbstractTB3Test { // Windows_Firefox_24_bufferingdemo_valo if (versionOverride != null) { - // Windows_Firefox_17_-buffering-demo_valo + // Windows_Firefox_17_bufferingdemo_valo parameters = parameters.replaceFirst("_" + getDesiredCapabilities().getVersion(), "_" + versionOverride); |