Add test to ensure that TimelineView loads more Events.
This commit is contained in:
parent
79b8a628b1
commit
824de9cc11
3 changed files with 108 additions and 7 deletions
|
|
@ -27,3 +27,9 @@ class EnsureNeverCalledWithParam<T> : (T) -> Unit {
|
|||
throw AssertionError("Should not be called and is called with $p1")
|
||||
}
|
||||
}
|
||||
|
||||
class EnsureNeverCalledWithTwoParams<T, U> : (T, U) -> Unit {
|
||||
override fun invoke(p1: T, p2: U) {
|
||||
throw AssertionError("Should not be called and is called with $p1 and $p2")
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue