From 2a1b120dc86f1c584ba52ecd9b6b5e858c2722b5 Mon Sep 17 00:00:00 2001 From: Andrea Acampora Date: Wed, 15 Feb 2023 18:31:17 +0100 Subject: [PATCH] chore: delete template test class --- src/test/kotlin/TestApp.kt | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 src/test/kotlin/TestApp.kt diff --git a/src/test/kotlin/TestApp.kt b/src/test/kotlin/TestApp.kt deleted file mode 100644 index c7d9a59c..00000000 --- a/src/test/kotlin/TestApp.kt +++ /dev/null @@ -1,16 +0,0 @@ -import io.kotest.core.spec.style.StringSpec -import io.kotest.matchers.ints.shouldBeExactly - -/* - * Copyright (c) 2023. Smart Operating Block - * - * Use of this source code is governed by an MIT-style - * license that can be found in the LICENSE file or at - * https://opensource.org/licenses/MIT. - */ - -class TestApp : StringSpec({ - "2+2 is equal to 4" { - 2 + 2 shouldBeExactly 4 - } -})