Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sanderploegsma/assertj-reflection
An extension to AssertJ that provides assertions on reflection types
https://github.com/sanderploegsma/assertj-reflection
assertj assertj-library testing testing-library
Last synced: about 1 month ago
JSON representation
An extension to AssertJ that provides assertions on reflection types
- Host: GitHub
- URL: https://github.com/sanderploegsma/assertj-reflection
- Owner: sanderploegsma
- License: apache-2.0
- Created: 2024-02-19T21:46:12.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-03-08T12:53:57.000Z (10 months ago)
- Last Synced: 2024-04-15T07:41:41.277Z (8 months ago)
- Topics: assertj, assertj-library, testing, testing-library
- Language: Java
- Homepage: https://sanderploegsma.github.io/assertj-reflection/
- Size: 204 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# assertj-reflection
[![Maven Central Version][maven-central-badge]][maven-central]
[![Javadoc][javadoc-badge]][javadoc]
[![Coverage Status][coveralls-badge]][coveralls]An extension to [AssertJ] that provides assertion methods using reflection.
## Usage
Check out the [examples directory](./examples) to see how this library can be used.
All available assertions can be found in the project's [javadoc].## Installation
### Gradle
To install `assertj-reflection` using Gradle, add it to the list of dependencies in your project's `build.gradle`:
```groovy
dependencies {
testImplementation 'io.github.sanderploegsma:assertj-reflection:0.1.0'
}
```### Maven
To install `assertj-reflection` using Maven, add it to the list of dependencies in your project's `pom.xml`:
```xml
io.github.sanderploegsma
assertj-reflection
0.1.0
test
```
[AssertJ]: https://github.com/assertj/assertj
[coveralls]: https://coveralls.io/github/sanderploegsma/assertj-reflection?branch=main
[coveralls-badge]: https://coveralls.io/repos/github/sanderploegsma/assertj-reflection/badge.svg?branch=main
[javadoc]: https://sanderploegsma.github.io/assertj-reflection/
[javadoc-badge]: https://img.shields.io/badge/docs-javadoc-blue
[maven-central]: https://central.sonatype.com/artifact/io.github.sanderploegsma/assertj-reflection
[maven-central-badge]: https://img.shields.io/maven-central/v/io.github.sanderploegsma/assertj-reflection