Skip to content

Latest commit

 

History

History
34 lines (24 loc) · 1.31 KB

README.md

File metadata and controls

34 lines (24 loc) · 1.31 KB

Red Dog's Renderer Test API

API from which renderer implementations are expected to use in its unit tests.

Must be added as a dependency with a test scope to the pom.xml file of the renderer implementation (e.g. look at rdap-json-renderer pom.xml file), depends on JUnit as well:

<dependency>
	<groupId>mx.nic.rdap</groupId>
	<artifactId>rdap-renderer-test-api</artifactId>
	<version>1.0.0</version>
	<scope>test</scope>
</dependency>
<dependency>
	<groupId>junit</groupId>
	<artifactId>junit</artifactId>
	<version>4.12</version>
	<scope>test</scope>
</dependency>

Documentation

The general documentation can be seen here, within the docs there's more specific documentation that can be seen at Unit testing of Renderer implementation.

Contact

Any comment or feedback is welcomed, issues can be reported at Red Dog's Github corner.

Visit our contact page to get more information.

License

Red Dog is licensed under Apache License 2.0.