Add test to ensure that TimelineView loads more Events.

This commit is contained in:
Benoit Marty 2024-02-06 17:12:14 +01:00
parent 46ff038b98
commit e66f53f64c
3 changed files with 108 additions and 7 deletions

View file

@ -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")
}
}