!3 The expected property-value pairs are given across a row of the table.
 * More than one pair can be in a row.
 * There's no need to check all of the properties
For example, a ''User'' has a ''name'' and an amount they ''owe'' us:
!**< def
!define user1 (|''name''|Poor Payer|
|''owe''|10000.00|
)
!define user2 (|''name''|Poor Payer|''owe''|10000.00|
)
!define user3 (|''name''|Poor Payer|
)
!define test (!|fitlibrary.specify.domain.UserAdapter|
|''checks''|
|''slow paying user''|${user1}|
|''slow paying user''|${user2}|
|''slow paying user''|${user3}|
)
**!
|!-fitlibrary.spec.SpecifyFixture-!|
|${test}|!-
| fitlibrary.specify.domain.UserAdapter | 
| slow paying user | 
| name | Poor Payer |  | owe | 10000.00 |  | 
| slow paying user | 
| name | Poor Payer | owe | 10000.00 |  | 
-!|