Index: base/test/android/javatests/src/org/chromium/base/test/util/IntegrationTest.java |
diff --git a/base/test/android/javatests/src/org/chromium/base/test/util/EnormousTest.java b/base/test/android/javatests/src/org/chromium/base/test/util/IntegrationTest.java |
similarity index 62% |
copy from base/test/android/javatests/src/org/chromium/base/test/util/EnormousTest.java |
copy to base/test/android/javatests/src/org/chromium/base/test/util/IntegrationTest.java |
index af483ec3f98c34510d2b551ffa028fa833be81df..8d6841d1954eeef563c4e22c42ad7848dc139956 100644 |
--- a/base/test/android/javatests/src/org/chromium/base/test/util/EnormousTest.java |
+++ b/base/test/android/javatests/src/org/chromium/base/test/util/IntegrationTest.java |
@@ -1,4 +1,4 @@ |
-// Copyright 2012 The Chromium Authors. All rights reserved. |
+// 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
|
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
@@ -10,15 +10,15 @@ import java.lang.annotation.RetentionPolicy; |
import java.lang.annotation.Target; |
/** |
- * This annotation is for enormous tests. |
+ * This annotation is for integration tests. |
* <p> |
- * Examples of enormous tests are tests that depend on external web sites or |
- * tests that are long running. |
+ * Examples of integration tests are tests that rely on the application's |
+ * real (i.e. not mock) components and services to test the system as a whole. |
* <p> |
* Such tests are likely NOT reliable enough to run on tree closing bots and |
* should only be run on FYI bots. |
*/ |
@Target(ElementType.METHOD) |
@Retention(RetentionPolicy.RUNTIME) |
-public @interface EnormousTest { |
-} |
+public @interface IntegrationTest { |
+} |