我有a library我在src / test / scala中创建了a very useful class。如何让用户可以使用此类,以便他们可以在测试中使用此类?
如果我将此测试类迁移到src / main / scala并进行部署,那么我的库将需要将测试框架作为依赖项。
如果我在测试中部署工件,那么我的库的测试也将被打包,这是愚蠢的,因为使用我的库的人不需要访问库测试。
答案 0 :(得分:2)
只是摆脱了对scalatest的依赖,你不需要那些东西:
trait VeryUsefulTrait {
implicit class RichExpect[T](expect: Expect[T]) {
val timeout = expect.settings.timeout + 1.second
def failedFutureValue: Throwable = Await.result(expect.run().failed, timeout)
def futureValue: T = Await.result(expect.run(), timeout)
def whenReady[U](f: T => U): U = f(Await.result(expect.run(), timeout))
}