1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2024-06-25 04:54:49 +02:00

Add example kotlin test

This commit is contained in:
Paul Schaub 2023-06-25 23:42:54 +02:00
parent 4a161a8d91
commit b06dea379c
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311

View file

@ -0,0 +1,18 @@
// SPDX-FileCopyrightText: 2023 Paul Schaub <vanitasvitae@fsfe.org>
//
// SPDX-License-Identifier: Apache-2.0
package org.pgpainless.wot.dijkstra
import org.junit.jupiter.api.Test
import kotlin.test.assertEquals
import kotlin.test.assertNotEquals
class ExampleTest {
@Test
fun testSomething() {
assertNotEquals("PGPainless", "GnuPG")
assertEquals(24, 14 + 10)
}
}