- add sources.
[platform/framework/web/crosswalk.git] / src / base / test / android / javatests / src / org / chromium / base / test / util / HostDrivenTest.java
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
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 host-driven tests.
14  * <p>
15  * Tests with these annotations are run explicitly by HostDrivenTestCase-derived
16  * python tests on the host and are excluded from regular instrumentation test runs.
17  * <p>
18  */
19 @Target(ElementType.METHOD)
20 @Retention(RetentionPolicy.RUNTIME)
21 public @interface HostDrivenTest {
22 }