✨ Add container for debug information flags
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Thu, 11 Jul 2019 12:43:52 +0000 (14:43 +0200)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Thu, 11 Jul 2019 12:43:52 +0000 (14:43 +0200)
src/main/kotlin/net/pterodactylus/sone/core/DebugInformation.kt [new file with mode: 0644]
src/test/kotlin/net/pterodactylus/sone/core/DebugInformationTest.kt [new file with mode: 0644]

diff --git a/src/main/kotlin/net/pterodactylus/sone/core/DebugInformation.kt b/src/main/kotlin/net/pterodactylus/sone/core/DebugInformation.kt
new file mode 100644 (file)
index 0000000..acb0155
--- /dev/null
@@ -0,0 +1,25 @@
+/**
+ * Sone - DebugInformation.kt - Copyright © 2019 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
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+package net.pterodactylus.sone.core
+
+class DebugInformation {
+
+       @Volatile
+       var showVersionInformation = false
+
+}
diff --git a/src/test/kotlin/net/pterodactylus/sone/core/DebugInformationTest.kt b/src/test/kotlin/net/pterodactylus/sone/core/DebugInformationTest.kt
new file mode 100644 (file)
index 0000000..5ec1ea9
--- /dev/null
@@ -0,0 +1,33 @@
+/**
+ * Sone - DebugInformationTest.kt - Copyright © 2019 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
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+package net.pterodactylus.sone.core
+
+import org.hamcrest.MatcherAssert.*
+import org.hamcrest.Matchers.*
+import kotlin.test.*
+
+class DebugInformationTest {
+
+       private val debugInformation = DebugInformation()
+
+       @Test
+       fun `new debug information has show version information set to off`() {
+               assertThat(debugInformation.showVersionInformation, equalTo(false))
+       }
+
+}