Fixture Setup through Object Notation for Implicit Test Fixtures
<dependency>
<groupId>com.github.douglashiura</groupId>
<artifactId>picon</artifactId>
<version>5.0.2</version>
</dependency>
com.package.User{
mary[name='Mary Joe']
}
@ExtendWith(PiconRunner.class)
class ClassTest {
private User mary;
@Test
void userNotNull(){
assertNotNull(mary);
}
}