chromium/components/cronet/android/test/smoketests/src/org/chromium/net/smoke/CronetPlatformSmokeTestRule.java

// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

package org.chromium.net.smoke;

/** Base test class. This class should not import any classes from the org.chromium.base package. */
public class CronetPlatformSmokeTestRule extends CronetSmokeTestRule {

    @Override
    protected TestSupport initTestSupport() {
        return new ChromiumPlatformOnlyTestSupport();
    }
}