Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(41)

Side by Side Diff: base/test/android/javatests/src/org/chromium/base/test/util/IntegrationTest.java

Issue 407173002: Added an annotation to label Integration tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
jbudorick 2014/07/22 17:46:50 Why is this comparing to EnormousTest...?
klundberg 2014/07/22 18:43:26 I see this happen quite often where codereview com
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 package org.chromium.base.test.util; 5 package org.chromium.base.test.util;
6 6
7 import java.lang.annotation.ElementType; 7 import java.lang.annotation.ElementType;
8 import java.lang.annotation.Retention; 8 import java.lang.annotation.Retention;
9 import java.lang.annotation.RetentionPolicy; 9 import java.lang.annotation.RetentionPolicy;
10 import java.lang.annotation.Target; 10 import java.lang.annotation.Target;
11 11
12 /** 12 /**
13 * This annotation is for enormous tests. 13 * This annotation is for integration tests.
14 * <p> 14 * <p>
15 * Examples of enormous tests are tests that depend on external web sites or 15 * Examples of integration tests are tests that rely on the application's
16 * tests that are long running. 16 * real (i.e. not mock) components and services to test the system as a whole.
17 * <p> 17 * <p>
18 * Such tests are likely NOT reliable enough to run on tree closing bots and 18 * Such tests are likely NOT reliable enough to run on tree closing bots and
19 * should only be run on FYI bots. 19 * should only be run on FYI bots.
20 */ 20 */
21 @Target(ElementType.METHOD) 21 @Target(ElementType.METHOD)
22 @Retention(RetentionPolicy.RUNTIME) 22 @Retention(RetentionPolicy.RUNTIME)
23 public @interface EnormousTest { 23 public @interface IntegrationTest {
24 } 24 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698