)
@Test
- fun `module can create notification handler`() {
- assertThat(injector.getInstance<NotificationHandler>(), notNullValue())
- }
-
- @Test
fun `notification handler is created as singleton`() {
injector.verifySingletonInstance<NotificationHandler>()
}
@Test
- fun `module can create mark-post-known-during-first-start handler`() {
- assertThat(injector.getInstance<MarkPostKnownDuringFirstStartHandler>(), notNullValue())
- }
-
- @Test
fun `mark-post-known-during-first-start handler is created as singleton`() {
injector.verifySingletonInstance<MarkPostKnownDuringFirstStartHandler>()
}
}
@Test
- fun `module can create sone-locked-on-startup handler`() {
- assertThat(injector.getInstance<SoneLockedOnStartupHandler>(), notNullValue())
- }
-
- @Test
fun `sone-locked-on-startup handler is created as singleton`() {
injector.verifySingletonInstance<SoneLockedOnStartupHandler>()
}
}
@Test
- fun `new-sone handler can be created`() {
- assertThat(injector.getInstance<NewSoneHandler>(), notNullValue())
- }
-
- @Test
fun `new-sone handler is created as singleton`() {
injector.verifySingletonInstance<NewSoneHandler>()
}
}
@Test
- fun `new-remote-post handler can be created`() {
- assertThat(injector.getInstance<NewRemotePostHandler>(), notNullValue())
- }
-
- @Test
fun `new-remote-post handler is created as singleton`() {
injector.verifySingletonInstance<NewRemotePostHandler>()
}
@Test
- fun `new-remote-post notification can be created`() {
- assertThat(injector.getInstance<ListNotification<Post>>(named("newRemotePost")), notNullValue())
- }
-
- @Test
fun `new-remote-post notification is created as singleton`() {
injector.verifySingletonInstance<ListNotification<Post>>(named("newRemotePost"))
}
}
@Test
- fun `sone-locked notification can be created`() {
- assertThat(injector.getInstance<ListNotification<Sone>>(named("soneLocked")), notNullValue())
- }
-
- @Test
fun `sone-locked notification is created as singleton`() {
injector.verifySingletonInstance<ListNotification<Sone>>(named("soneLocked"))
}
}
@Test
- fun `sone-locked handler can be created`() {
- assertThat(injector.getInstance<SoneLockedHandler>(), notNullValue())
- }
-
- @Test
fun `sone-locked handler is created as singleton`() {
injector.verifySingletonInstance<SoneLockedHandler>()
}
@Test
- fun `local-post notification can be created`() {
- assertThat(injector.getInstance<ListNotification<Post>>(named("localPost")), notNullValue())
- }
-
- @Test
fun `local-post notification is not dismissable`() {
assertThat(injector.getInstance<ListNotification<Post>>(named("localPost")).isDismissable, equalTo(false))
}
}
@Test
- fun `local-post handler can be created`() {
- assertThat(injector.getInstance<LocalPostHandler>(), notNullValue())
- }
-
- @Test
fun `local-post handler is created as singleton`() {
injector.verifySingletonInstance<LocalPostHandler>()
}
}
@Test
- fun `new-version handler can be created`() {
- assertThat(injector.getInstance<NewVersionHandler>(), notNullValue())
- }
-
- @Test
fun `new-version handler is created as singleton`() {
injector.verifySingletonInstance<NewVersionHandler>()
}