You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When integrating https://github.com/crytic/properties with an existing foundry codebase, many assertion helpers collide with forge-std/Test.sol, which makes it harder to use both helpers on the same set of contracts.
For example, this repo's assertWithMsg from this repo serves the same purpose as foundry's assertTrue, so they could have the same name. Also, one uses assertGte while the other uses assertGe, etc.
It would be nice if this repo was fully compatible with foundry for an easier integration.
The text was updated successfully, but these errors were encountered:
Describe the desired feature or improvement
When integrating https://github.com/crytic/properties with an existing foundry codebase, many assertion helpers collide with
forge-std/Test.sol
, which makes it harder to use both helpers on the same set of contracts.For example, this repo's
assertWithMsg
from this repo serves the same purpose as foundry'sassertTrue
, so they could have the same name. Also, one usesassertGte
while the other usesassertGe
, etc.It would be nice if this repo was fully compatible with foundry for an easier integration.
The text was updated successfully, but these errors were encountered: