I separate my tests into a different dar. When I execute them, I believe that the test coverage shows 100% because it does not have the path to the models:
$ daml test --show-coverage
daml/RoleTests.daml:testSetup: ok, 1 active contracts, 2 transactions.
test coverage: templates 100%, choices 100%
templates never created:
choices never executed:
But then when I used --include
$ daml test --show-coverage --include ../../models/daml
File: daml/RoleTests.daml
Hidden: no
Range: 16:20-16:26
Source: typecheck
Severity: DsError
Message:
daml/RoleTests.daml:16:20: error:
• Couldn't match expected type 'Party'
with actual type 'Party'
NB: 'Party' is defined in 'DA.Internal.LF'
'Party' is defined in 'DA.Internal.LF'
• In the 'operator' field of a record
In the first argument of 'createCmd', namely
'Genesis {operator = change}'
In a stmt of a 'do' block: createCmd Genesis {operator = change}
...
Is --include
the wrong argument?