I have seen many articles on how to mock the method in the case class when testing with scalamock.
However, sometimes I need to mock only one field. For example when I'm testing a very narrow workflow.
I thought that stub[Type].copy(f = "1")
would do a trick, but it returns only null
.
Neither can you mock the field as if it was a method:
val x = mock[Type]
( x.f _ ).when().then("1")
This won't compile as well.
What is the workaround in this situation? What is the best practice in this situation? Should I really define the whole case class fields that I don't need to test?
ScalaMock does not seem to provide mocking of
val
fields, which is what case class constructor parameters translate toOther mocking tools might provide it, for example, it works with
mockito-scala
It is often argued in favour of not mocking case classes but instead just create an instance. On the other hand, if case class has large number of fields this might become unwieldy: mock case class in scala : Mockito