Coverage Summary for Class: ProductsUseCases_ProvidesSearchProductByBarcodeFactory (com.imecatro.demosales.di)

Class Class, % Method, % Branch, % Line, % Instruction, %
ProductsUseCases_ProvidesSearchProductByBarcodeFactory 0% (0/1) 0% (0/4) 0% (0/6) 0% (0/28)


 package com.imecatro.demosales.di;
 
 import com.imecatro.demosales.domain.core.architecture.coroutine.CoroutineProvider;
 import com.imecatro.demosales.domain.products.repository.ProductsRepository;
 import com.imecatro.demosales.domain.products.usecases.SearchProductByBarcode;
 import dagger.internal.DaggerGenerated;
 import dagger.internal.Factory;
 import dagger.internal.Preconditions;
 import dagger.internal.Provider;
 import dagger.internal.QualifierMetadata;
 import dagger.internal.ScopeMetadata;
 import javax.annotation.processing.Generated;
 
 @ScopeMetadata
 @QualifierMetadata
 @DaggerGenerated
 @Generated(
     value = "dagger.internal.codegen.ComponentProcessor",
     comments = "https://dagger.dev"
 )
 @SuppressWarnings({
     "unchecked",
     "rawtypes",
     "KotlinInternal",
     "KotlinInternalInJava",
     "cast",
     "deprecation",
     "nullness:initialization.field.uninitialized"
 })
 public final class ProductsUseCases_ProvidesSearchProductByBarcodeFactory implements Factory<SearchProductByBarcode> {
   private final Provider<ProductsRepository> productsRepositoryProvider;
 
   private final Provider<CoroutineProvider> ioDispatcherProvider;
 
   private ProductsUseCases_ProvidesSearchProductByBarcodeFactory(
       Provider<ProductsRepository> productsRepositoryProvider,
       Provider<CoroutineProvider> ioDispatcherProvider) {
     this.productsRepositoryProvider = productsRepositoryProvider;
     this.ioDispatcherProvider = ioDispatcherProvider;
   }
 
   @Override
   public SearchProductByBarcode get() {
     return providesSearchProductByBarcode(productsRepositoryProvider.get(), ioDispatcherProvider.get());
   }
 
   public static ProductsUseCases_ProvidesSearchProductByBarcodeFactory create(
       Provider<ProductsRepository> productsRepositoryProvider,
       Provider<CoroutineProvider> ioDispatcherProvider) {
     return new ProductsUseCases_ProvidesSearchProductByBarcodeFactory(productsRepositoryProvider, ioDispatcherProvider);
   }
 
   public static SearchProductByBarcode providesSearchProductByBarcode(
       ProductsRepository productsRepository, CoroutineProvider ioDispatcher) {
     return Preconditions.checkNotNullFromProvides(ProductsUseCases.INSTANCE.providesSearchProductByBarcode(productsRepository, ioDispatcher));
   }
 }