diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index 7bc0a64d..e0e771be 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -41,10 +41,10 @@ jobs:
- name: Prepare dependencies
run: |
mvn install:install-file \
- -Dfile=lib/spring-restdocs-core-2.0.5.RELEASE-test.jar \
+ -Dfile=lib/spring-restdocs-core-2.0.6.RELEASE-test-fixtures.jar \
-DgroupId=org.springframework.restdocs \
-DartifactId=spring-restdocs-core \
- -Dversion=2.0.5.RELEASE \
+ -Dversion=2.0.6.RELEASE \
-Dpackaging=jar \
-Dclassifier=test
mvn install:install-file \
diff --git a/lib/spring-restdocs-core-2.0.5.RELEASE-test.jar b/lib/spring-restdocs-core-2.0.5.RELEASE-test.jar
deleted file mode 100644
index ff9371c4..00000000
Binary files a/lib/spring-restdocs-core-2.0.5.RELEASE-test.jar and /dev/null differ
diff --git a/lib/spring-restdocs-core-2.0.6.RELEASE-test-fixtures.jar b/lib/spring-restdocs-core-2.0.6.RELEASE-test-fixtures.jar
new file mode 100644
index 00000000..16f82500
Binary files /dev/null and b/lib/spring-restdocs-core-2.0.6.RELEASE-test-fixtures.jar differ
diff --git a/pom.xml b/pom.xml
index 90df53d9..23c9cd99 100644
--- a/pom.xml
+++ b/pom.xml
@@ -48,7 +48,7 @@
UTF-8
${project.build.directory}/generated-snippets
- 2.0.5.RELEASE
+ 2.0.6.RELEASE
0.10.1
diff --git a/spring-auto-restdocs-core/src/test/java/capital/scalable/restdocs/AbstractSnippetTests.java b/spring-auto-restdocs-core/src/test/java/capital/scalable/restdocs/AbstractSnippetTests.java
new file mode 100644
index 00000000..645e93d5
--- /dev/null
+++ b/spring-auto-restdocs-core/src/test/java/capital/scalable/restdocs/AbstractSnippetTests.java
@@ -0,0 +1,62 @@
+/*-
+ * #%L
+ * Spring Auto REST Docs Core
+ * %%
+ * Copyright (C) 2015 - 2022 Scalable Capital GmbH
+ * %%
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * #L%
+ */
+package capital.scalable.restdocs;
+
+import java.util.Arrays;
+import java.util.List;
+
+import org.junit.Rule;
+import org.junit.runner.RunWith;
+import org.junit.runners.Parameterized;
+import org.junit.runners.Parameterized.Parameters;
+import org.springframework.restdocs.templates.TemplateFormat;
+import org.springframework.restdocs.templates.TemplateFormats;
+import org.springframework.restdocs.testfixtures.GeneratedSnippets;
+import org.springframework.restdocs.testfixtures.OperationBuilder;
+import org.springframework.restdocs.testfixtures.SnippetConditions;
+
+@RunWith(Parameterized.class)
+public abstract class AbstractSnippetTests {
+
+ protected final TemplateFormat templateFormat;
+
+ @Rule
+ public GeneratedSnippets generatedSnippets;
+
+ @Rule
+ public OperationBuilder operationBuilder;
+
+ @Parameters(name = "{0}")
+ public static List