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