EnormousTest.java revision 5821806d5e7f356e8fa4b058a389a808ea183019
1// Copyright (c) 2012 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5package org.chromium.base.test.util;
6
7import java.lang.annotation.ElementType;
8import java.lang.annotation.Retention;
9import java.lang.annotation.RetentionPolicy;
10import java.lang.annotation.Target;
11
12/**
13 * This annotation is for enormous tests.
14 * <p>
15 * Examples of enormous tests are tests that depend on external web sites or
16 * tests that are long running.
17 * <p>
18 * Such tests are likely NOT reliable enough to run on tree closing bots and
19 * should only be run on FYI bots.
20 */
21@Target(ElementType.METHOD)
22@Retention(RetentionPolicy.RUNTIME)
23public @interface EnormousTest {
24}
25