public void matching_JSONQUotedString(string s, string parsed, string textAfter) { FakeVirtualString v = new FakeVirtualString(s); var m = new VirtualStringMatcher(v); m.TryMatchJSONQuotedString(out string result, true).Should().BeTrue(); result.Should().Be(parsed); m.TryMatchText(textAfter).Should().BeTrue(); m = new VirtualStringMatcher(v); m.TryMatchJSONQuotedString(true).Should().BeTrue(); m.TryMatchText(textAfter).Should().BeTrue(); }