Skip to content

Commit

Permalink
Add tests to verify java versions on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
TWiStErRob committed Jul 22, 2023
1 parent 3a502f1 commit 7b41c8c
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package io.github.gradlenexus.publishplugin

import org.junit.jupiter.api.Test
import org.junit.jupiter.api.fail

class JavaVersionInCompatTest {

@Test fun test() {
fail(System.getProperty("java.version").toString())
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package io.github.gradlenexus.publishplugin.e2e

import org.junit.jupiter.api.Test
import org.junit.jupiter.api.fail

class JavaVersionInE2ETest {

@Test fun test() {
fail(System.getProperty("java.version").toString())
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package io.github.gradlenexus.publishplugin

import org.junit.jupiter.api.Test
import org.junit.jupiter.api.fail

class JavaVersionUnitTest {

@Test fun test() {
fail(System.getProperty("java.version").toString())
}
}

0 comments on commit 7b41c8c

Please sign in to comment.