FlexTradeUKLtd / jfixture

JFixture is an open source library based on the popular .NET library, AutoFixture
MIT License
105 stars 22 forks source link

Improve JFixtureJUnitRunner #2

Open richkeenan opened 10 years ago

richkeenan commented 10 years ago

It'd be very nice to have the JFixtureJUnitRunner class override the invocation of test methods so they can inject specimen instances as method parameters.

@Test
public void example_test(String orderId) {
   sut.setId(orderId);
   ...
}