📄 Update year in file headers
[Sone.git] / src / test / kotlin / net / pterodactylus / sone / web / notification / Testing.kt
index 12088d0..68bb103 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Sone - Testing.kt - Copyright Â© 2019 David â€˜Bombe’ Roden
+ * Sone - Testing.kt - Copyright Â© 2019–2020 David â€˜Bombe’ Roden
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -17,6 +17,8 @@
 
 package net.pterodactylus.sone.web.notification
 
+import net.pterodactylus.util.notify.*
+import java.io.*
 import java.util.concurrent.*
 
 /** Information about a scheduled runnable. */
@@ -35,3 +37,9 @@ class TestScheduledThreadPoolExecutor : ScheduledThreadPoolExecutor(1) {
                                        .also { scheduleds += Scheduled(command, delay, unit, it) }
 
 }
+
+fun NotificationManager.firstStart() {
+       addNotification(object : AbstractNotification("first-start-notification") {
+               override fun render(writer: Writer?) = Unit
+       })
+}