-
Notifications
You must be signed in to change notification settings - Fork 16
Open
Description
To create an Arquillian test with Forge the command is :
arquillian-create-test --value <path/of/the/class/ToTest.java>
In all the Forge commands, when we need to target a specific class, we use the --target parameter. --value is a bit confusing and doesn't follow Forge convention. I think --value should be renamed --target or even better, --targets. This way we could use wildcard (*) and create as many test classes as the one in the package:
arquillian-create-test --value <path/of/the/class/*.java>
Reactions are currently unavailable