json-snapshot.github.io
json-snapshot.github.io copied to clipboard
Snapshot Testing for Java
Latest release version is 1.0.17, after that there are commits for json order ignore changes. Please release new version with these commits. Also, add **JSONAssertConfig.java** class to use **JSON AssertMatching...
Can json-snapshot be used for doing snapshot testing for protobuf messages so that it can also be used for testing grpc responses?
Bumps [spotless-maven-plugin](https://github.com/diffplug/plugin-maven) from 1.18.0 to 1.20.0. Commits See full diff in compare view [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...
Bumps [jackson-databind](https://github.com/FasterXML/jackson) from 2.9.10.7 to 2.12.7.1. Commits See full diff in compare view [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...
Nested test docs: https://junit.org/junit5/docs/current/user-guide/#writing-tests-nested Currently snapshot matching within nested test classes is not supported. Example: ``` class Demo { @BeforeAll static void beforeAll() { SnapshotMatcher.start(); } @AfterAll static void afterAll()...
Jackson 2.10 was released 2019-09-26. It contains a fix for https://github.com/FasterXML/jackson-core/issues/502, which makes snapshot building fail with the following exception: ``` io.github.jsonSnapshot.SnapshotMatchException: Failed `createInstance()`: io.github.jsonSnapshot.SnapshotMatcher$1 does not override method; it...
Context: * I have a class with multiple snapshots but often times, I only want to run a single test when I'm troubleshooting an issue or working on new functionality....
Hi team, Was trying to use this library and while calling Start() methog in @Before hook for cucumber, im getting this error. Pfa the pic  Com/fasterxml/jackson/core/util/JacksonFeature class not found....
So builds will work under JDK11.
``` private static boolean hasTestAnnotation(Method method) { return method.isAnnotationPresent(Test.class) || method.isAnnotationPresent(BeforeClass.class) || method.isAnnotationPresent(org.junit.jupiter.api.Test.class) || method.isAnnotationPresent(BeforeAll.class); } ``` does not allow for meta annotations annotated with`@Test`.