> ## Documentation Index
> Fetch the complete documentation index at: https://notevil.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# CAPLfunctionTestIsAsynchronousCheckEvaluationEnabled

# testIsAsynchronousCheckEvaluationEnabled

[Valid for](../../../Shared/FeatureAvailability.md): CANoe DE • CANoe4SW DE

## Function Syntax

```c theme={null}
long testIsAsynchronousCheckEvaluationEnabled();
```

## Description

This function is used to check if background checks are evaluated asynchronously.

## Parameters

—

## Return Values

* **0**: Asynchronous evaluation is not enabled.
* **1**: Asynchronous evaluation is enabled.

## Example

```c theme={null}
result = testIsAsynchronousCheckEvaluationEnabled ();
if (result == 1)
  TestStep("", "Asynchronous evaluation of background checks enabled");
```
