当前位置:  开发笔记 > 编程语言 > 正文

如何使用Mockito在Scala对象中模拟一个函数?

如何解决《如何使用Mockito在Scala对象中模拟一个函数?》经验,为你挑选了2个好方法。



1> Dan Simon..:

您可以在对象扩展的特征中定义方法.然后简单地模拟特征:

trait Login {
  def login(userName: String, password: String): Boolean
}

object TempScalaService extends Login {
   def login(userName: String, password: String): Boolean = {
     if (userName.equals("root") && password.equals("admin123")) {
   return true
   }
    else return false
  }
}

//in your test
val service = mock[Login]



2> LuisKarlos..:

您无法模拟对象,尝试将代码移动到类:

class TempScalaService() {
  def login(userName: String, password: String): Boolean = {
    if (userName.equals("root") && password.equals("admin123")) {
      return true
    }
    else return false
  }
}

并创建一个服务:

object TempScalaService {
   private val service = TempScalaService()

   def apply() = service
}

使用依赖注入框架会更好,但它现在可以工作.

现在,为了测试,使用:

val service = mock[TempScalaService]
when(service.login("user", "testuser")).thenReturn(true)

推荐阅读
小色米虫_524
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有