1 | // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
2 | // Use of this source code is governed by a BSD-style license that can be |
3 | // found in the LICENSE file. |
4 | |
5 | package org.chromium.chrome.testshell.uiautomator; |
6 | |
7 | import com.android.uiautomator.testrunner.UiAutomatorTestCase; |
8 | |
9 | import org.chromium.base.test.util.DisabledTest; |
10 | |
11 | /** |
12 | * Dummy test for verifying uiautomator tests can be built. |
13 | */ |
14 | public class DummyTest extends UiAutomatorTestCase { |
15 | |
16 | @DisabledTest |
17 | public void testPass() {} |
18 | } |