• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package com.android.wallpaper.testing
2 
3 import com.android.wallpaper.module.PackageStatusNotifier
4 import javax.inject.Inject
5 import javax.inject.Singleton
6 
7 /** Test implementation of [PackageStatusNotifier] */
8 @Singleton
9 class TestPackageStatusNotifier @Inject constructor() : PackageStatusNotifier {
addListenernull10     override fun addListener(listener: PackageStatusNotifier.Listener?, action: String?) {
11         // Do nothing intended
12     }
13 
removeListenernull14     override fun removeListener(listener: PackageStatusNotifier.Listener?) {
15         // Do nothing intended
16     }
17 }
18