If two strings represent the same JSON regardless of formatting
`{"foo": "bar"}`.shouldBeSameJsonAs(`{"foo": "bar"}`); `{"foo": "bar"}`.shouldBeSameJsonAs(`{"foo":"bar"}`); `{"foo":"bar"}`.shouldBeSameJsonAs(`{"foo": "baz"}`).shouldThrow!UnitTestException;
See Implementation
If two strings represent the same JSON regardless of formatting