# 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](https://docs.valtimo.nl/v12/fundamentals/getting-started/modules/core/valtimo-dependency-versions) 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")
}
```
