Is there a Daml “best practice” for structuring tests?
For example, in the DA Market place repo da-marketplace/daml at main · digital-asset/da-marketplace · GitHub
The tests have its own directory, I suspect its because we are following the best practice for structuring a haskell project as shown in the link below:
https://wiki.haskell.org/Structure_of_a_Haskell_project
Is there anything against structuring the tests such as
/daml
/Account
/Main
Account.daml ( defined as module Main.Account where)
/Test
Account.daml (defined as module Test.Account where, and we import the above Main.Account)
So that each daml module is accompanied by a test along side?
Would like to know if there is a preferred or recommended way, thanks!