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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 {
+}
« 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