|
||||||||
This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators. For more information on JIRA, see: http://www.atlassian.com/software/jira |
- [jbehave-dev] [jira] (JBEHAVE-838) can I pass multiple... Goops Shre (JIRA)
- [jbehave-dev] [jira] (JBEHAVE-838) can I pass mul... Mauro Talevi (JIRA)
- [jbehave-dev] [jira] (JBEHAVE-838) can I pass mul... Goops Shre (JIRA)
- [jbehave-dev] [jira] (JBEHAVE-838) can I pass mul... Mauro Talevi (JIRA)
- [jbehave-dev] [jira] (JBEHAVE-838) can I pass mul... Mauro Talevi (JIRA)
- [jbehave-dev] [jira] (JBEHAVE-838) can I pass mul... Goops Shre (JIRA)
- [jbehave-dev] [jira] (JBEHAVE-838) can I pass mul... Mauro Talevi (JIRA)
Thanks Mauro,
can I fill balance data (header2 and header3)from java in Given "a table" and "another table"? i.e.
Given a members
11223
and claims
claimsID | typesofClaims| ClaimsNumbers| |
C1001| | | |
my steps are as follows:
@Given("$members with $claims")
public void AddValues(ExamplesTable members, ExamplesTable claims) { //TODO loop through members to: // 1. Insert header2 from partyType(Table)...note:Few fields only // 2. Insert header3 from contactType(Table)(Note: all fields) //TODO loop through claims to: // 1. Insert claimID from Claim(Table) // 2. Insert typesofClaims from MedicalClaim(Table) }