[Test] public void Test07() { CollectionAssert.AreEqual(new [] { "a.b", "c" }, JsonPath.SplitPath2Rev("a.b.c")); }
[Test] public void Test05() { CollectionAssert.AreEqual(new [] { "a", "1" }, JsonPath.SplitPath2Rev("a.1")); }
[Test] public void Test02() { CollectionAssert.AreEqual(new [] { "" }, JsonPath.SplitPath2Rev("")); }
[Test] public void Test01() { NUnit.Assert.Catch <ArgumentNullException>(() => JsonPath.SplitPath2Rev(null)); }
[Test] public void Test11() { CollectionAssert.AreEqual(new [] { "1" }, JsonPath.SplitPath2Rev("[1]")); }
[Test] public void Test09() { CollectionAssert.AreEqual(new [] { "a[1]", "b" }, JsonPath.SplitPath2Rev("a[1].b")); }