You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@isis.apache.org by "ASF subversion and git services (JIRA)" <ji...@apache.org> on 2018/06/06 09:24:00 UTC

[jira] [Commented] (ISIS-1954) JUnit 5 support

    [ https://issues.apache.org/jira/browse/ISIS-1954?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16503043#comment-16503043 ] 

ASF subversion and git services commented on ISIS-1954:
-------------------------------------------------------

Commit ee96209b4a6d8e626afb1b843253cc9ede7339c3 in isis's branch refs/heads/master from [~hobrom]
[ https://gitbox.apache.org/repos/asf?p=isis.git;h=ee96209 ]

ISIS-1954: migrate simple-app tests to JUnit 5

except for one test class which is still run with JUnit 4 because it
uses org.junit.Rule:
domainapp.modules.simple.dom.impl.SimpleObjects_Test

Task-Url: https://issues.apache.org/jira/browse/ISIS-1954

> JUnit 5 support
> ---------------
>
>                 Key: ISIS-1954
>                 URL: https://issues.apache.org/jira/browse/ISIS-1954
>             Project: Isis
>          Issue Type: Improvement
>          Components: Core
>            Reporter: Andi Huber
>            Assignee: Andi Huber
>            Priority: Minor
>             Fix For: 2.0.0-M1
>
>
> Allow users to also write JUnit-5 Tests, while not breaking existing JUnit-4 infrastructure.
> We replace the JUnit-4 (4.12) dependencies with Jupiter (5.2.0) including vintage which provides backwards compatibility ...
> {code:xml}
> <!-- JUPITER -->
> <dependency>
> 	<!-- JUnit API for writing tests and extensions -->
> 	<groupId>org.junit.jupiter</groupId>
> 	<artifactId>junit-jupiter-api</artifactId>
> </dependency>
> <dependency>
> 	<!-- implementation of the JUnit Jupiter test engine -->
> 	<groupId>org.junit.jupiter</groupId>
> 	<artifactId>junit-jupiter-engine</artifactId>
> </dependency>
> <dependency>
> 	<!-- support for unit tests that use JUnit 4 or JUnit 3 -->
> 	<groupId>org.junit.vintage</groupId>
> 	<artifactId>junit-vintage-engine</artifactId>
> </dependency>
> {code}
>  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)