> For the complete documentation index, see [llms.txt](https://docs.valtimo.nl/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.valtimo.nl/fundamentals/getting-started/modules/core/test-utils-common.md).

# Test utils common

## Dependencies

This module contains utilities that are useful when creating tests for Valtimo.

### Backend

The samples below assume the [valtimo-dependency-versions](/fundamentals/getting-started/modules/core/valtimo-dependency-versions.md) module is used. If not, please specify the artifact version as well.

#### Maven dependency:

```xml
<dependencies>
    <dependency>
        <groupId>com.ritense.valtimo</groupId>
        <artifactId>test-utils-common</artifactId>
        <scope>test</scope>
    </dependency>
</dependencies>
```

#### Gradle dependency:

```kotlin
dependencies {
  testImplementation "com.ritense.valtimo:test-utils-common")
}
```
