refactor: remove unnecessary test

This commit is contained in:
oSumAtrIX 2022-12-11 01:28:55 +01:00
parent 6c5de8b414
commit c2a5a55e67
No known key found for this signature in database
GPG key ID: A9B3094ACDB604B4

View file

@ -1,19 +0,0 @@
package app.revanced.patcher.util
import org.junit.jupiter.api.Assertions.*
import org.junit.jupiter.api.Test
internal class VersionReaderTest {
@Test
fun read() {
val version = VersionReader.read()
assertNotNull(version)
assertTrue(version.isNotEmpty())
val parts = version.split(".")
assertEquals(3, parts.size)
parts.forEach {
assertTrue(it.toInt() >= 0)
}
println(version)
}
}