- 
                Notifications
    You must be signed in to change notification settings 
- Fork 5
JUnit5
        Sven Ruppert edited this page Apr 8, 2018 
        ·
        1 revision
      
    For the demos we want to write jUnit tests to verify the functionality we are coding. So we need the dependency in our projects.
    <!--TDD with jUNit5-->
    <dependency>
      <groupId>org.junit.jupiter</groupId>
      <artifactId>junit-jupiter-api</artifactId>
      <version>${junit.version}</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.junit.jupiter</groupId>
      <artifactId>junit-jupiter-engine</artifactId>
      <version>${junit.version}</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.junit.platform</groupId>
      <artifactId>junit-platform-launcher</artifactId>
      <version>${junit-platform.version}</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.junit.platform</groupId>
      <artifactId>junit-platform-runner</artifactId>
      <version>${junit-platform.version}</version>
      <scope>test</scope>
    </dependency>for feedback or questions :
- Twitter : @SvenRuppert
- email: sven.ruppert (a) gmail.com