
functions.string.split.json Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of histone-acceptance-test-cases
Show all versions of histone-acceptance-test-cases
This artifact stores acceptance test cases for all histone implementations (histone-java, histone-javascript).
The newest version!
[{
"name": "string.split",
"cases": [{
"input": "a {{\"string\".split('')}} b",
"expectedResult": "a s t r i n g b"
}, {
"input": "a {{\"string\".split('').isMap()}} b",
"expectedResult": "a true b"
}, {
"input": "a {{\"string\".split()}} b",
"expectedResult": "a s t r i n g b"
}, {
"input": "a {{\"string\".split('sdafdsafdsaf')}} b",
"expectedResult": "a string b"
}, {
"input": "a {{\"s.t.r.i.n.g\".split('.')}} b",
"expectedResult": "a s t r i n g b"
}]
}]