Skip to content

probedock/probedock-junit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Probe Dock Junit

Junit probe for Probe Dock.

License

Requirements

  • Java 6+

Installation for Maven

In your pom file, add the following dependency:

<dependency>
  <groupId>io.probedock.client</groupId>
  <artifactId>probedock-junit</artifactId>
  <version>0.5.2</version>
  <scope>test</scope>
</dependency>

Configure your maven surefire plugin to add a Junit listener:

<plugins>
  <!-- Add the Maven Surefire plugin or adapt its configuration. -->
  <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-surefire-plugin</artifactId>
    <version>2.16</version>
    <configuration>
        <properties>
            <property>
                <name>listener</name>
                <value>io.probedock.client.junit.ProbeListener</value>
            </property>
        </properties>
    </configuration>
  </plugin>  
</plugins>

Contributing

  • Fork
  • Create a topic branch - git checkout -b my_feature
  • Push to your branch - git push origin my_feature
  • Create a pull request from your branch

Please add a changelog entry with your name for new features and bug fixes.

License

Probe Dock Junit is licensed under the MIT License. See LICENSE.txt for the full license.