diff --git a/core/src/test/kotlin/com/hexagonkt/core/CheatSheetTest.kt b/core/src/test/kotlin/com/hexagonkt/core/CheatSheetTest.kt deleted file mode 100644 index 24f6ce6073..0000000000 --- a/core/src/test/kotlin/com/hexagonkt/core/CheatSheetTest.kt +++ /dev/null @@ -1,74 +0,0 @@ -package com.hexagonkt.core - -import org.junit.jupiter.api.Test -import kotlin.test.assertEquals - -internal class CheatSheetTest { - - @Test fun `Data utilities`() { - // data - /* - * Utilities to ease the processing of collections, sets, and maps to ease mapping to - * classes. - */ - val map = mapOf( - "map" to mapOf( - "list" to listOf(10, 20, 30), - "key" to "value", - ), - ) - - // Retrieve nested map elements - assertEquals(10, map.getPath("map", "list", 0)) - assertEquals(20, map.getPath("map", "list", 1)) - assertEquals("value", map.getPath("map", "key")) - - // data - } - - @Test fun `Exceptions utilities`() { - // exceptions - // exceptions - } - - @Test fun `Network utilities`() { - // network - // network - } - - @Test fun `Strings utilities`() { - // strings - // strings - - // ansi - // ansi - } - - @Test fun `Classpath utilities`() { - // classpath - // classpath - - // resourceNotFound - // resourceNotFound - } - - @Test fun `Glob utilities`() { - // glob - // glob - } - - @Test fun `Jvm utilities`() { - // jvm - // jvm - } - - @Test fun `Logging utilities`() { - // mediaTypes - // mediaTypes - } - - @Test fun `Media types utilities`() { - // mediaTypes - // mediaTypes - } -}