static void test_splitStringAtIndices() { assertEquals(ll("hel", "lo"), splitStringAtIndices("hello", ll(3))); assertEquals(ll("a", "+", "b"), splitStringAtIndices("a+b", ll(1, 2))); }