[go: nahoru, domu]

Skip to content
This repository has been archived by the owner on Feb 22, 2023. It is now read-only.

Rename instrumentation_adapter plugin to e2e plugin #2161

Merged
merged 21 commits into from
Oct 8, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
More renaming
  • Loading branch information
collinjackson committed Oct 7, 2019
commit 2872f031bbaa7cbe753ac651ecf2d998d07d24ea
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

package dev.flutter.plugins.instrumentationadapter;
package dev.flutter.plugins.e2e;

import io.flutter.plugin.common.MethodCall;
import io.flutter.plugin.common.MethodChannel;
Expand All @@ -12,8 +12,8 @@
import java.util.Map;
import java.util.concurrent.CompletableFuture;

/** InstrumentationAdapterPlugin */
public class InstrumentationAdapterPlugin implements MethodCallHandler {
/** E2EPlugin */
public class E2EPlugin implements MethodCallHandler {

public static CompletableFuture<Map<String, String>> testResults = new CompletableFuture<>();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

package dev.flutter.plugins.instrumentationadapter;
package dev.flutter.plugins.e2e;

import android.app.Activity;
import androidx.test.rule.ActivityTestRule;
Expand Down
4 changes: 2 additions & 2 deletions packages/e2e/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ dependencies:

flutter:
plugin:
androidPackage: dev.flutter.plugins.instrumentationadapter
pluginClass: InstrumentationAdapterPlugin
androidPackage: dev.flutter.plugins.e2e
pluginClass: E2EPlugin