> **Can't find what you're looking for?** Use `search_docs` on the docs MCP server at `https://www.getfoundry.sh/api/mcp` to find what you need.
>
> **Have feedback?** Use `submit_feedback` on the same MCP server.

## `assertTrue`

### Signature

```solidity
function assertTrue(bool data) internal;
```

```solidity
function assertTrue(bool data, string memory err) internal;
```

### Description

Asserts `data` is true.

Optionally includes an error message in the revert string.

### Examples

```solidity
bool success = contract.fun();
assertTrue(success);
```

### SEE ALSO

* [`assertFalse`](/reference/forge-std/assertFalse.mdx)
