public final class

ViewInteractionModule_ProvideRootMatcherFactory

extends java.lang.Object

 java.lang.Object

↳androidx.test.espresso.ViewInteractionModule_ProvideRootMatcherFactory

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_ProvideRootMatcherFactory android.support.test.espresso.ViewInteractionModule_ProvideRootMatcherFactory

Summary

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

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

public java.util.concurrent.atomic.AtomicReference<>get()

public static java.util.concurrent.atomic.AtomicReference<>provideRootMatcher(androidx.test.espresso.ViewInteractionModule instance)

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

Constructors

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

Methods

public java.util.concurrent.atomic.AtomicReference<> get()

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

public static java.util.concurrent.atomic.AtomicReference<> provideRootMatcher(androidx.test.espresso.ViewInteractionModule instance)

Source

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

import dagger.internal.DaggerGenerated;
import dagger.internal.Factory;
import dagger.internal.Preconditions;
import dagger.internal.QualifierMetadata;
import dagger.internal.ScopeMetadata;
import java.util.concurrent.atomic.AtomicReference;
import org.hamcrest.Matcher;

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

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

  @Override
  public AtomicReference<Matcher<Root>> get() {
    return provideRootMatcher(module);
  }

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

  public static AtomicReference<Matcher<Root>> provideRootMatcher(ViewInteractionModule instance) {
    return Preconditions.checkNotNullFromProvides(instance.provideRootMatcher());
  }
}