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
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -491,7 +491,7 @@ Run the test suite using `echidna . --contract CryticABDKMath64x64Harness --seq-
491
491
492
492
# Helper functions
493
493
494
-
The repository provides a collection of functions and events meant to simplify the debugging and testing of assertions in Echidna. Commonly used functions, such as integer clamping or logging for different types are available in [contracts/util/PropertiesHelper.sol](contracts/util/PropertiesHelper.sol).
494
+
The repository provides a collection of functions and events meant to simplify the debugging and testing of assertions in Echidna. Commonly used functions, such as integer clamping or logging for different types are available in [contracts/util/PropertiesAsserts.sol](contracts/util/PropertiesAsserts.sol).
495
495
496
496
Available helpers:
497
497
@@ -508,7 +508,7 @@ Log a value for debugging. When the assertion is violated, the value of `someVal
@@ -584,7 +584,7 @@ contract TestProperties is PropertiesAsserts {
584
584
585
585
# HEVM cheat codes support
586
586
587
-
Since version 2.0.5, Echidna supports [HEVM cheat codes](https://hevm.dev/std-test-tutorial.html#supported-cheat-codes). This repository contains a [`Hevm.sol`](contracts/util/Hevm.sol) contract that exposes cheat codes for easy integration into contracts under test.
587
+
Since version 2.0.5, Echidna supports [HEVM cheat codes](https://hevm.dev/std-test-tutorial.html#supported-cheat-codes). This repository contains a [`IHevm.sol`](contracts/util/IHevm.sol) contract that exposes cheat codes for easy integration into contracts under test.
588
588
589
589
Cheat codes should be used with care, since they can alter the execution environment in ways that are not expected, and may introduce false positives or false negatives.
590
590
@@ -595,7 +595,7 @@ Use `prank` to simulate a call from a different `msg.sender`:
0 commit comments