suppoze
09/21/2018, 12:32 PMval myMockWithBigInteger = mockk<MyTypeWithBigInteger>().also { myMock ->
every { myMock.bigIntProp } answers {
if (shouldExist) BigInteger.valueOf(aLongValue) else nothing
}
}