Hi, I'm making a function which takes &[Row] as input and I want to make a few test cases for it. However, from what I can tell there is no way to directly construct a Row.
Is it by design, that Row doesn't expose a public constructor? - How do others go about making test data for functions taking Row as input?
Hi, I'm making a function which takes
&[Row]as input and I want to make a few test cases for it. However, from what I can tell there is no way to directly construct aRow.Is it by design, that
Rowdoesn't expose a public constructor? - How do others go about making test data for functions takingRowas input?