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

Unified Diff: blimp/client/android/javatests/src/org/chromium/blimp/DummyTest.java

Issue 1365823002: Add basic test suite for Blimp (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@blimp_strings
Patch Set: Added top level test target Created 5 years, 3 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
Index: blimp/client/android/javatests/src/org/chromium/blimp/DummyTest.java
diff --git a/blimp/client/android/javatests/src/org/chromium/blimp/DummyTest.java b/blimp/client/android/javatests/src/org/chromium/blimp/DummyTest.java
new file mode 100644
index 0000000000000000000000000000000000000000..41dd5b33d052e05312e804b75ca672f42d155300
--- /dev/null
+++ b/blimp/client/android/javatests/src/org/chromium/blimp/DummyTest.java
@@ -0,0 +1,18 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+package org.chromium.blimp;
+
+import android.test.InstrumentationTestCase;
+import android.test.suitebuilder.annotation.SmallTest;
+
+/**
+ * Placeholder so that BlimpTest has a test to run.
+ */
+public class DummyTest extends InstrumentationTestCase {
+ /** Empty test that always passes. */
+ @SmallTest
+ public void testDummy() {
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698