public final class

PlatformTestStorageModule_ProvideTestStorageFactory

extends java.lang.Object

 java.lang.Object

↳androidx.test.espresso.base.PlatformTestStorageModule_ProvideTestStorageFactory

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
publicPlatformTestStorageModule_ProvideTestStorageFactory(PlatformTestStorageModule module)

Methods
public static PlatformTestStorageModule_ProvideTestStorageFactorycreate(PlatformTestStorageModule module)

public PlatformTestStorageget()

public static PlatformTestStorageprovideTestStorage(PlatformTestStorageModule instance)

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

Constructors

public PlatformTestStorageModule_ProvideTestStorageFactory(PlatformTestStorageModule module)

Methods

public PlatformTestStorage get()

public static PlatformTestStorage provideTestStorage(PlatformTestStorageModule instance)

Source

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

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;

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

  public PlatformTestStorageModule_ProvideTestStorageFactory(PlatformTestStorageModule module) {
    this.module = module;
  }

  @Override
  public PlatformTestStorage get() {
    return provideTestStorage(module);
  }

  public static PlatformTestStorageModule_ProvideTestStorageFactory create(
      PlatformTestStorageModule module) {
    return new PlatformTestStorageModule_ProvideTestStorageFactory(module);
  }

  public static PlatformTestStorage provideTestStorage(PlatformTestStorageModule instance) {
    return Preconditions.checkNotNullFromProvides(instance.provideTestStorage());
  }
}