Skip to content
This repository has been archived by the owner on May 21, 2019. It is now read-only.

Method Format

aslakhellesoy edited this page Sep 13, 2010 · 1 revision

The location of Java Step Definitions are reported like follows:

Given I have a transaction             # BillingSteps.iHaveATransaction()
When I send the transaction to billing # BillingSteps.iSendTheTransactionToBilling()
Then the response should be OK         # BillingSteps.theResponseShouldBeOK()

If you want finer control over how the location is reported you can specify a different format with the cuke4duke.methodFormat System property (the default is %c.%m(%a)).

  • %M: Modifiers
  • %qr: Qualified return type
  • %r: Unqualified return type
  • %qc: Qualified class
  • %c: Unqualified class
  • %m: Method name
  • %qa: Qualified arguments
  • %a: Unqualified arguments
  • %qe: Qualified exceptions
  • %e: Unqualified exceptions
Clone this wiki locally