1 // Copyright 2023 The Chromium Authors
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.net.smoke;
6 
7 /** Base test class. This class should not import any classes from the org.chromium.base package. */
8 public class CronetPlatformSmokeTestRule extends CronetSmokeTestRule {
9 
10     @Override
initTestSupport()11     protected TestSupport initTestSupport() {
12         return new ChromiumPlatformOnlyTestSupport();
13     }
14 }
15