Skip to content

Instantly share code, notes, and snippets.

View samadalishah's full-sized avatar
🎯
Focusing

Samad Ali Shah samadalishah

🎯
Focusing
View GitHub Profile
@samadalishah
samadalishah / TestJsons.markdown
Last active October 31, 2025 15:22
Java Unit Test for Quick Local Comparison of JSON Files

First add dependency to your project for easy json comparison, e.g testImplementation("org.skyscreamer:jsonassert:1.5.0") in gradle based projects

Next, create a Test file and paste below code into the file

public class JsonComparisonTest {

    ObjectMapper objectMapper = new ObjectMapper();

 @Test