我在scala类中使用cacheasyncapi:
class AggregationService @Inject()(@NamedCache("name") cache: CacheAsyncApi){}
我想做一个单元测试。
所以尝试用cacheasyncapi方法实现fakechache。
问题是我没有成功实现“Map”功能:
功能如下:
override def map[T](key: String)(implicit evidence$8: ClassTag[T]): RedisMap[T, AsynchronousResult] = ???
如何测试cacheasyncapi功能?尤其是Map功能
build.sbt包括:
lazy val playLibs = Seq(
"com.typesafe.play" %% "play-cache" % "2.7.2",
"com.github.karelcemus" %% "play-redis" % "2.4.0"
)
提前谢谢。
暂无答案!
目前还没有任何答案,快来回答吧!