1
0
Fork 0
mirror of https://github.com/anyproto/anytype-kotlin.git synced 2025-06-08 05:47:05 +09:00

DROID-449 App | Tech | Add debug tree menu (#2730)

DROID-449 App | Tech | Add debug tree menu
This commit is contained in:
Mikhail 2022-11-30 23:17:39 +03:00 committed by GitHub
parent 548f3b0039
commit e2ac0e6076
Signed by: github
GPG key ID: 4AEE18F83AFDEB23
41 changed files with 598 additions and 359 deletions

View file

@ -1,8 +0,0 @@
package com.anytypeio.anytype.test_utils
import org.mockito.invocation.InvocationOnMock
import org.mockito.stubbing.Answer
class ValueClassAnswer(private val value: Any) : Answer<Any> {
override fun answer(invocation: InvocationOnMock?): Any = value
}