The "Fallback String-to-Object Conversion" in the parameterized tests only supports String as argument.
It would be nice to have CharSequence as well to ease these kind of use cases:
class MyClass {
public static MyClass parse(CharSequence text) { ... }
}