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.browser.test;
6
7import org.chromium.base.test.util.HostDrivenTest;
8import org.chromium.chrome.shell.ChromeShellTestBase;
9
10/**
11 * Dummy test suite for verifying the host-driven test framework.
12 */
13public class DummyTest extends ChromeShellTestBase {
14    @HostDrivenTest
15    public void testPass() {}
16}
17