public final class

ViewInteractionModule_ProvideRemoteInteractionFactory

extends java.lang.Object

 java.lang.Object

↳androidx.test.espresso.ViewInteractionModule_ProvideRemoteInteractionFactory

Gradle dependencies

compile group: 'androidx.test.espresso', name: 'espresso-core', version: '3.6.1'

  • groupId: androidx.test.espresso
  • artifactId: espresso-core
  • version: 3.6.1

Artifact androidx.test.espresso:espresso-core:3.6.1 it located at Google repository (https://maven.google.com/)

Androidx artifact mapping:

androidx.test.espresso:espresso-core com.android.support.test.espresso:espresso-core

Androidx class mapping:

androidx.test.espresso.ViewInteractionModule_ProvideRemoteInteractionFactory android.support.test.espresso.ViewInteractionModule_ProvideRemoteInteractionFactory

Summary

Constructors
publicViewInteractionModule_ProvideRemoteInteractionFactory(androidx.test.espresso.ViewInteractionModule module)

Methods
public static ViewInteractionModule_ProvideRemoteInteractionFactorycreate(androidx.test.espresso.ViewInteractionModule module)

public RemoteInteractionget()

public static RemoteInteractionprovideRemoteInteraction(androidx.test.espresso.ViewInteractionModule instance)

from java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

Constructors

public ViewInteractionModule_ProvideRemoteInteractionFactory(androidx.test.espresso.ViewInteractionModule module)

Methods

public RemoteInteraction get()

public static ViewInteractionModule_ProvideRemoteInteractionFactory create(androidx.test.espresso.ViewInteractionModule module)

public static RemoteInteraction provideRemoteInteraction(androidx.test.espresso.ViewInteractionModule instance)

Source

// Generated by Dagger (https://dagger.dev).
package androidx.test.espresso;

import androidx.test.espresso.remote.RemoteInteraction;
import dagger.internal.DaggerGenerated;
import dagger.internal.Factory;
import dagger.internal.Preconditions;
import dagger.internal.QualifierMetadata;
import dagger.internal.ScopeMetadata;

@ScopeMetadata
@QualifierMetadata
@DaggerGenerated
@SuppressWarnings({
    "unchecked",
    "rawtypes",
    "KotlinInternal",
    "KotlinInternalInJava"
})
public final class ViewInteractionModule_ProvideRemoteInteractionFactory implements Factory<RemoteInteraction> {
  private final ViewInteractionModule module;

  public ViewInteractionModule_ProvideRemoteInteractionFactory(ViewInteractionModule module) {
    this.module = module;
  }

  @Override
  public RemoteInteraction get() {
    return provideRemoteInteraction(module);
  }

  public static ViewInteractionModule_ProvideRemoteInteractionFactory create(
      ViewInteractionModule module) {
    return new ViewInteractionModule_ProvideRemoteInteractionFactory(module);
  }

  public static RemoteInteraction provideRemoteInteraction(ViewInteractionModule instance) {
    return Preconditions.checkNotNullFromProvides(instance.provideRemoteInteraction());
  }
}