Goops Shre commented on Wish JBEHAVE-842

I tried with the syntax of @Given (you recommended) including all tables as well as individual table. No progress.
1. New thing I added is "|" while starting as well as ending. No good news..
2. Addition to that I kept empty field exactly as per the field, my previous table filed was less than the empty columns. No good news...

Any Advise???

Revised Code:
@Given("a data of members $members and providers $providers and claims $claims")
public void TestFixtures(ExamplesTable members, ExamplesTable claims,
ExamplesTable providers) { dataHelper.createMembers(members.getRows()); dataHelper.createProviders(providers.getRows()); dataHelper.createClaims(claims.getRows()); }

Revised Story:
Given a data of members
MemberID |FName |LName |CarrierID| GroupID| DOB| Address1| Address2| City| State| ZipCode|

100000000 PINKIE PIE PONY                
100000001 Rainbow Dash                

and providers

ProviderID FName LName Address1 Address2 City State ZipCode
100000000 PINKIE PIE PONY          
100000001 Rainbow Dash          

and claims

ClaimID MemberID ProviderID ClaimStatus DaysSupply GPI Qty ClaimDt DrugName DiagnosisCode ProviderID PFName PLastName PartyID
100000000 100000000 100000002 P 30 62053550100330 60              

here is the result...

(com/story/DrugSafetyTest.story)
Scenario: Retrieve member information by member ID and rule Rule name
Given a data of members
MemberID |FName |LName |CarrierID| GroupID| DOB| Address1| Address2| City| State| ZipCode|

100000000 PINKIE PIE PONY                
100000001 Rainbow Dash                

and providers

ProviderID FName LName Address1 Address2 City State ZipCode
100000000 PINKIE PIE PONY          
100000001 Rainbow Dash          

and claims

ClaimID MemberID ProviderID ClaimStatus DaysSupply GPI Qty ClaimDt DrugName DiagnosisCode ProviderID PFName PLastName PartyID
100000000 100000000 100000002 P 30 62053550100330 60               (PENDING)
When AP_Dementia is the program to run with 2 DTPcount (NOT PERFORMED)
Then match output file in this file location (NOT PERFORMED)
@Given("a data of members \r\nMemberID\t
FName\t\t LName\t CarrierID GroupID DOB Address1 Address2 City State ZipCode \r\n 100000000\t PINKIE PIE\t PONY\t \t \t \t \t \t \t \t \t \r\n 100000001\t Rainbow\t Dash\t \t \t \t \t \t \t \t \t \r\n\r\nand providers \r\n ProviderID FName\t LName\t Address1 Address2 City State ZipCode \r\n 100000000 PINKIE PIE PONY \t \t \t \t \t \r\n 100000001 Rainbow Dash \t\t \t \t \t \t \r\n\r\nand claims \r\n ClaimID MemberID ProviderID ClaimStatus DaysSupply GPI Qty ClaimDt DrugName DiagnosisCode ProviderID PFName PLastName PartyID \r\n 100000000 100000000 100000002 P 30 62053550100330 60 \t \t \t \t \t \t \t ")
@Pending
public void givenADataOfMembersMemberIDFNameLNameCarrierIDGroupIDDOBAddress1Address2CityStateZipCode100000000PINKIEPIEPONY100000001RainbowDashAndProvidersProviderIDFNameLNameAddress1Address2CityStateZipCode100000000PINKIEPIEPONY100000001RainbowDashAndClaimsClaimIDMemberIDProviderIDClaimStatusDaysSupplyGPIQtyClaimDtDrugNameDiagnosisCodeProviderIDPFNamePLastNamePartyID100000000100000000100000002P306205355010033060() tok1-block-tok
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
--------------------------------------------------------------------- To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email

Reply via email to