mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
This shouldn't result in any logical changes. I've done a quick smoke test by building a local Android engine and running Flutter gallery, no compile errors or other obvious issues. Applied by running `/ci/format.sh | patch -p0` with the altered script added in flutter/engine#16500. I did locally modify the script slightly further so it would run against all Java files in the repo instead of just modified ones.
60 lines
2.4 KiB
Java
60 lines
2.4 KiB
Java
// Copyright 2013 The Flutter Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
package io.flutter;
|
|
|
|
import io.flutter.embedding.android.FlutterActivityTest;
|
|
import io.flutter.embedding.android.FlutterAndroidComponentTest;
|
|
import io.flutter.embedding.android.FlutterFragmentTest;
|
|
import io.flutter.embedding.android.FlutterViewTest;
|
|
import io.flutter.embedding.engine.FlutterEngineCacheTest;
|
|
import io.flutter.embedding.engine.FlutterEnginePluginRegistryTest;
|
|
import io.flutter.embedding.engine.FlutterJNITest;
|
|
import io.flutter.embedding.engine.RenderingComponentTest;
|
|
import io.flutter.embedding.engine.plugins.shim.ShimPluginRegistryTest;
|
|
import io.flutter.embedding.engine.renderer.FlutterRendererTest;
|
|
import io.flutter.embedding.engine.systemchannels.PlatformChannelTest;
|
|
import io.flutter.external.FlutterLaunchTests;
|
|
import io.flutter.plugin.common.StandardMessageCodecTest;
|
|
import io.flutter.plugin.editing.TextInputPluginTest;
|
|
import io.flutter.plugin.platform.PlatformPluginTest;
|
|
import io.flutter.plugin.platform.SingleViewPresentationTest;
|
|
import io.flutter.util.PreconditionsTest;
|
|
import org.junit.runner.RunWith;
|
|
import org.junit.runners.Suite;
|
|
import org.junit.runners.Suite.SuiteClasses;
|
|
import test.io.flutter.embedding.engine.FlutterEngineTest;
|
|
import test.io.flutter.embedding.engine.FlutterShellArgsTest;
|
|
import test.io.flutter.embedding.engine.PluginComponentTest;
|
|
import test.io.flutter.embedding.engine.dart.DartExecutorTest;
|
|
|
|
@RunWith(Suite.class)
|
|
@SuiteClasses({
|
|
// FlutterActivityAndFragmentDelegateTest.class, //TODO(mklim): Fix and re-enable this
|
|
DartExecutorTest.class,
|
|
FlutterActivityTest.class,
|
|
FlutterAndroidComponentTest.class,
|
|
FlutterEngineCacheTest.class,
|
|
FlutterEnginePluginRegistryTest.class,
|
|
FlutterEngineTest.class,
|
|
FlutterFragmentTest.class,
|
|
FlutterJNITest.class,
|
|
FlutterLaunchTests.class,
|
|
FlutterShellArgsTest.class,
|
|
FlutterRendererTest.class,
|
|
FlutterViewTest.class,
|
|
PlatformChannelTest.class,
|
|
PlatformPluginTest.class,
|
|
PluginComponentTest.class,
|
|
PreconditionsTest.class,
|
|
RenderingComponentTest.class,
|
|
StandardMessageCodecTest.class,
|
|
ShimPluginRegistryTest.class,
|
|
SingleViewPresentationTest.class,
|
|
SmokeTest.class,
|
|
TextInputPluginTest.class,
|
|
})
|
|
/** Runs all of the unit tests listed in the {@code @SuiteClasses} annotation. */
|
|
public class FlutterTestSuite {}
|