Skip to content

Commit

Permalink
Testing correct indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
johspaeth committed Dec 6, 2024
1 parent 90b5d54 commit a3efcbc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/cvl/foundry-integration.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ There is a minimum of 2 required files to get the Prover to verify Foundry fuzz

- First, we need a `.spec` file written in CVL to tell the Prover what to verify. The file is very simple, and in the minimal case
has exactly one line:\
\

```solidity
use builtin rule verifyFoundryFuzzTests;
```

- Second, you need a `.conf` file that will provide the Prover the information of which contract to verify, and what `.spec` file to use.
A minimal `.conf` file will look like this:
A minimal `.conf` file will look like this:\

```json
{
Expand Down Expand Up @@ -91,7 +91,7 @@ that start in `test*` and will use these to formally verify them.
- One of the usual usages of the `setUp()` function is to create new contract instances for testing.
When setting up the Prover run, the way to handle such storage references to other contracts is to use linking. If, for example,
we have the following test code\
\

```solidity
contract TestContract is Test {
MyContract myContract;
Expand All @@ -104,7 +104,7 @@ contract TestContract is Test {
```
\
then add to the `.conf` file:\
\

```json
"files": [
"...",
Expand Down

0 comments on commit a3efcbc

Please sign in to comment.