1// Copyright 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
5package org.chromium.chrome.shell.uiautomator;
6
7import com.android.uiautomator.testrunner.UiAutomatorTestCase;
8
9import org.chromium.base.test.util.DisabledTest;
10
11/**
12 * Dummy test for verifying uiautomator tests can be built.
13 */
14public class DummyTest extends UiAutomatorTestCase {
15
16    @DisabledTest
17    public void testPass() {}
18}
19