public final class

ViewInteractionModule_ProvideViewMatcherFactory

extends java.lang.Object

 java.lang.Object

↳androidx.test.espresso.ViewInteractionModule_ProvideViewMatcherFactory

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_ProvideViewMatcherFactory android.support.test.espresso.ViewInteractionModule_ProvideViewMatcherFactory

Summary

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

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

public <any>get()

public static <any>provideViewMatcher(androidx.test.espresso.ViewInteractionModule instance)

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

Constructors

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

Methods

public <any> get()

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

public static <any> provideViewMatcher(androidx.test.espresso.ViewInteractionModule instance)

Source

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

import android.view.View;
import dagger.internal.DaggerGenerated;
import dagger.internal.Factory;
import dagger.internal.Preconditions;
import dagger.internal.QualifierMetadata;
import dagger.internal.ScopeMetadata;
import org.hamcrest.Matcher;

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

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

  @Override
  public Matcher<View> get() {
    return provideViewMatcher(module);
  }

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

  public static Matcher<View> provideViewMatcher(ViewInteractionModule instance) {
    return Preconditions.checkNotNullFromProvides(instance.provideViewMatcher());
  }
}