Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 } |
| OLD | NEW |