Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / base / test / android / javatests / src / org / chromium / base / test / util / IntegrationTest.java
1 // Copyright 2014 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
5 package org.chromium.base.test.util;
6
7 import java.lang.annotation.ElementType;
8 import java.lang.annotation.Retention;
9 import java.lang.annotation.RetentionPolicy;
10 import java.lang.annotation.Target;
11
12 /**
13  * This annotation is for integration tests.
14  * <p>
15  * Examples of integration tests are tests that rely on real instances of the
16  * application's services and components (e.g. Search) to test the system as
17  * a whole. These tests may use additional command-line flags to configure the
18  * existing backends to use.
19  * <p>
20  * Such tests are likely NOT reliable enough to run on tree closing bots and
21  * should only be run on FYI bots.
22  */
23 @Target(ElementType.METHOD)
24 @Retention(RetentionPolicy.RUNTIME)
25 public @interface IntegrationTest {
26 }