Skip to content

Commit

Permalink
## What's changed?
Browse files Browse the repository at this point in the history
- Minor improvements for (experimental) interface support
  • Loading branch information
Nylle committed Nov 23, 2023
1 parent 1309586 commit 6a69690
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ The purpose of this project is to generate full object graphs for use in test su
<dependency>
<groupId>com.github.nylle</groupId>
<artifactId>javafixture</artifactId>
<version>2.10.0</version>
<version>2.10.1</version>
<scope>test</scope>
</dependency>
```
Expand Down Expand Up @@ -324,7 +324,7 @@ The test will be run for every `@TestCase`-annotation injecting the provided and
**The random values will be identical for all test-cases!**

### Experimental Features
Since version 2.10.0, a new experimental feature is available. If you enable `experimentalInterfaces`, Fixture will attempt to find implementations for an interface (or non-abstract subclasses of an abstract class) on your classpath and create those instead of wrapping the interface with a proxy. If no suitable implementation is found, the proxy will be created as a fallback.
Since version [2.10.0](https://github.com/Nylle/JavaFixture/releases/tag/2.10.0), a new experimental feature is available. If you enable `experimentalInterfaces`, Fixture will attempt to find implementations for an interface (or non-abstract subclasses of an abstract class) on your classpath and create those instead of wrapping the interface with a proxy. If no suitable implementation is found, the proxy will be created as a fallback.

```java
@Test
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>com.github.nylle</groupId>
<artifactId>javafixture</artifactId>
<packaging>jar</packaging>
<version>2.10.0</version>
<version>2.10.1</version>

<name>JavaFixture</name>
<url>https://github.com/Nylle/JavaFixture</url>
Expand Down

0 comments on commit 6a69690

Please sign in to comment.