-
Notifications
You must be signed in to change notification settings - Fork 114
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For #939: Upgrade to Junit 5 #1015
Changes from all commits
22b9fab
02e13e4
09916f5
249a06d
b370a87
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -134,6 +134,23 @@ | |
<artifactId>commons-lang3</artifactId> | ||
<version>3.7</version> | ||
</dependency> | ||
<!-- | ||
@todo #939:30min Upgrade to Junit5. Continue to upgrade to Junit5 | ||
updating qulice-maven-plugin sub-module and removing remaining | ||
junit4 tags. | ||
--> | ||
<dependency> | ||
<groupId>org.junit.jupiter</groupId> | ||
<artifactId>junit-jupiter-api</artifactId> | ||
<version>5.3.1</version> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @paulodamaso this should be a test scope |
||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.junit.jupiter</groupId> | ||
<artifactId>junit-jupiter-engine</artifactId> | ||
<version>5.3.1</version> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
</dependencyManagement> | ||
<build> | ||
|
@@ -175,6 +192,38 @@ | |
</tags> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-surefire-plugin</artifactId> | ||
<version>3.0.0-M3</version> | ||
<configuration> | ||
<useFile>false</useFile> | ||
<runOrder>random</runOrder> | ||
<trimStackTrace>false</trimStackTrace> | ||
<failIfNoTests>false</failIfNoTests> | ||
<failIfNoSpecifiedTests>true</failIfNoSpecifiedTests> | ||
<parallel>all</parallel> | ||
<parallelTestsTimeoutInSeconds>0</parallelTestsTimeoutInSeconds> | ||
<parallelTestsTimeoutForcedInSeconds>0</parallelTestsTimeoutForcedInSeconds> | ||
<perCoreThreadCount>true</perCoreThreadCount> | ||
<threadCount>4</threadCount> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-failsafe-plugin</artifactId> | ||
<version>3.0.0-M3</version> | ||
<configuration> | ||
<encoding>${project.build.sourceEncoding}</encoding> | ||
<failIfNoSpecifiedTests>false</failIfNoSpecifiedTests> | ||
<forkCount>0</forkCount> | ||
<parallel>all</parallel> | ||
<parallelTestsTimeoutForcedInSeconds>0</parallelTestsTimeoutForcedInSeconds> | ||
<parallelTestsTimeoutInSeconds>0</parallelTestsTimeoutInSeconds> | ||
<perCoreThreadCount>true</perCoreThreadCount> | ||
<runOrder>random</runOrder> | ||
<threadCount>8</threadCount> | ||
<trimStackTrace>false</trimStackTrace> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</pluginManagement> | ||
<plugins> | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,8 +32,8 @@ | |
import com.google.common.base.Joiner; | ||
import com.qulice.spi.Environment; | ||
import com.qulice.spi.ValidationException; | ||
import org.junit.Ignore; | ||
import org.junit.Test; | ||
import org.junit.jupiter.api.Disabled; | ||
import org.junit.jupiter.api.Test; | ||
|
||
/** | ||
* Test case for {@link FindBugsValidator}. | ||
|
@@ -58,8 +58,8 @@ public void passesCorrectFilesWithNoExceptions() throws Exception { | |
* FindbugsValidator can report incorrectly added throws. | ||
* @throws Exception If something wrong happens inside | ||
*/ | ||
@Ignore | ||
@Test(expected = ValidationException.class) | ||
@Disabled | ||
@org.junit.Test(expected = ValidationException.class) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @paulodamaso this should be from jupiter There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @krzyk I've not changed all tags from Jnit 4, as it would take way more than 30 min. I've left those |
||
public void reportsIncorrectlyAddedThrows() throws Exception { | ||
final byte[] bytecode = new BytecodeMocker() | ||
.withSource( | ||
|
@@ -107,7 +107,7 @@ public void ignoresCorrectlyAddedThrows() throws Exception { | |
* FindbugsValidator throw exception for invalid file. | ||
* @throws Exception If something wrong happens inside | ||
*/ | ||
@Test(expected = ValidationException.class) | ||
@org.junit.Test(expected = ValidationException.class) | ||
public void throwsExceptionOnViolation() throws Exception { | ||
final byte[] bytecode = new BytecodeMocker() | ||
.withSource("class Foo { public Foo clone() { return this; } }") | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@paulodamaso you also need to upgrade surefire and failsafe to the newest versions, right now they are taken from jcabi-parent