cologneintelligence / FitGoodies

Goodies for Fit (Framework for Integration Tests)
GNU General Public License v3.0
4 stars 2 forks source link

Resolution of cross references doesn't work in special row combination #24

Closed sparsick closed 9 years ago

sparsick commented 9 years ago

Given following expected table with cross references throws NumberFormatException :

x (String) y (int) z (int)
x ${test} 3
x 5 6

The computed table looks

x (String) y (int) z (int)
x 2 3
x 5 6

The reason for the exception is that the original RowFixture tries to use ${test} as key and parsing to int fails.

jochenwierum commented 9 years ago

Fixed by #25