public final class

ViewInteractionModule_ProvideTestFlowVisualizerFactory

extends java.lang.Object

 java.lang.Object

↳androidx.test.espresso.ViewInteractionModule_ProvideTestFlowVisualizerFactory

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

Summary

Constructors
publicViewInteractionModule_ProvideTestFlowVisualizerFactory(androidx.test.espresso.ViewInteractionModule module, <any> platformTestStorageProvider)

Methods
public static ViewInteractionModule_ProvideTestFlowVisualizerFactorycreate(androidx.test.espresso.ViewInteractionModule module, <any> platformTestStorageProvider)

public TestFlowVisualizerget()

public static TestFlowVisualizerprovideTestFlowVisualizer(androidx.test.espresso.ViewInteractionModule instance, PlatformTestStorage platformTestStorage)

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

Constructors

public ViewInteractionModule_ProvideTestFlowVisualizerFactory(androidx.test.espresso.ViewInteractionModule module, <any> platformTestStorageProvider)

Methods

public TestFlowVisualizer get()

public static ViewInteractionModule_ProvideTestFlowVisualizerFactory create(androidx.test.espresso.ViewInteractionModule module, <any> platformTestStorageProvider)

public static TestFlowVisualizer provideTestFlowVisualizer(androidx.test.espresso.ViewInteractionModule instance, PlatformTestStorage platformTestStorage)

Source

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

import androidx.test.espresso.internal.data.TestFlowVisualizer;
import androidx.test.platform.io.PlatformTestStorage;
import dagger.internal.DaggerGenerated;
import dagger.internal.Factory;
import dagger.internal.Preconditions;
import dagger.internal.QualifierMetadata;
import dagger.internal.ScopeMetadata;
import javax.inject.Provider;

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

  private final Provider<PlatformTestStorage> platformTestStorageProvider;

  public ViewInteractionModule_ProvideTestFlowVisualizerFactory(ViewInteractionModule module,
      Provider<PlatformTestStorage> platformTestStorageProvider) {
    this.module = module;
    this.platformTestStorageProvider = platformTestStorageProvider;
  }

  @Override
  public TestFlowVisualizer get() {
    return provideTestFlowVisualizer(module, platformTestStorageProvider.get());
  }

  public static ViewInteractionModule_ProvideTestFlowVisualizerFactory create(
      ViewInteractionModule module, Provider<PlatformTestStorage> platformTestStorageProvider) {
    return new ViewInteractionModule_ProvideTestFlowVisualizerFactory(module, platformTestStorageProvider);
  }

  public static TestFlowVisualizer provideTestFlowVisualizer(ViewInteractionModule instance,
      PlatformTestStorage platformTestStorage) {
    return Preconditions.checkNotNullFromProvides(instance.provideTestFlowVisualizer(platformTestStorage));
  }
}