Add test to ensure that TimelineView loads more Events.
This commit is contained in:
parent
46ff038b98
commit
e66f53f64c
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