import net.pterodactylus.sone.web.page.FreenetRequest
import net.pterodactylus.util.template.Template
import net.pterodactylus.util.template.TemplateContext
+import javax.inject.Inject
/**
* Page that lets the user browse all his bookmarked posts.
*/
-class BookmarksPage(template: Template, webInterface: WebInterface) :
+class BookmarksPage @Inject constructor(template: Template, webInterface: WebInterface) :
SoneTemplatePage("bookmarks.html", webInterface, template, "Page.Bookmarks.Title") {
override fun handleRequest(freenetRequest: FreenetRequest, templateContext: TemplateContext) {
package net.pterodactylus.sone.web.pages
import net.pterodactylus.sone.data.Post
+import net.pterodactylus.sone.test.getInstance
import net.pterodactylus.sone.test.mock
import net.pterodactylus.sone.test.whenever
import net.pterodactylus.sone.utils.Pagination
+import net.pterodactylus.sone.web.baseInjector
import org.hamcrest.MatcherAssert.assertThat
import org.hamcrest.Matchers.contains
import org.hamcrest.Matchers.equalTo
+import org.hamcrest.Matchers.notNullValue
import org.junit.Before
import org.junit.Test
}
}
+ @Test
+ fun `bookmarks page can be created by dependency injection`() {
+ assertThat(baseInjector.getInstance<BookmarksPage>(), notNullValue())
+ }
+
}